← Browse

@espressif/lcd-touch-paint

A

Use this skill when the user asks for a drawing app, paint app, touch test,

skillclaude

Install

agr install @espressif/lcd-touch-paint --target claude

Writes 1 file into .claude/skills/, pinned to git-9291bdac.

  • .claude/skills/lcd-touch-paint/SKILL.md

Document


{ "name": "lcd_touch_paint", "description": "A finger-drawing paint application on the on-board LCD touch panel. Use as a touch test, drawing demo, or LCD touch sanity check.", "author": "ESP-Claw contributor", "metadata": { "category": ["utility", "ui"], "tags": ["paint", "drawing", "touch", "demo"], "peripherals": ["display"], "cap_groups": ["cap_lua"], "manage_mode": "web" }, "simulator": { "entry": "scripts/lcd_touch_paint.lua", "files": [ "scripts/lcd_touch_paint.lua" ] } }

LCD Touch Paint

Use this skill when the user asks for a drawing app, paint app, touch test, LCD touch demo, or finger drawing on the board's display.

The Lua script uses the on-device board_manager, display, and lcd_touch modules to initialize the panel and render strokes that follow the user's finger. It clears and redraws each frame, so no persistent buffer is needed.

Requirements

  • A display device declared as display_lcd in board hardware info.
  • An LCD touch device available on the board.

If either is missing the script prints an error and exits without retrying.

Tool Call Inputs

{
  "path": "{CUR_SKILL_DIR}/scripts/lcd_touch_paint.lua",
  "args": {}
}

The script takes no arguments; pass an empty args object.

Behavior

After launch the screen shows a blank canvas. Touching and dragging a finger draws strokes in the configured ink color; releasing lifts the pen. The script runs until it is stopped by the runtime. On startup or runtime failure it prints a single [lcd_touch_paint] ERROR: ... line which should be reported directly to the user.

Trustgrade A

  • passBody integrity

    Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.

  • passType matchnot applicable to this artifact type

    Whether the artifact is really the kind of thing its metadata claims it is.

  • passFreshness

    How long since the source repository was last pushed to.

  • passPrompt injection

    Scans the artifact's own text for instructions aimed at your agent rather than at you.

  • passLicense

    Whether the source repository declares an SPDX license permissive enough to redistribute.

How the grade is calculated

Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:

  • Aevery check passed
  • Bone warning
  • Ctwo warnings
  • Dprompt injection or body integrity failed, or three warnings
  • Fone of those failed, and something else is wrong

These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged — not that the artifact is safe.

Versions

  • git-9291bdac5a2d2026-07-31