Skip to main content

ats-mini-screenshot

Capture the ATS Mini display for UI inspection, theme work, or manual screenshots using shell commands.

설치로 이동

소스 정보

저장소
esp32-si4732/ats-mini
최근 소스 활동
2026년 9월 12일 07:50
감지된 SKILL.md 언어
영어
스타
623
포크
166

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
ats-mini-screenshot
description
Capture the ATS Mini display for UI inspection, theme work, or manual screenshots using shell commands.
Read `docs/source/remote.md` for connection setup and screen navigation. Prefer USB unless another transport is requested. On macOS, find the device with `print -rl -- /dev/cu.*(N)` in zsh. Use shell commands only; no helper scripts. For a plain screenshot request, capture the current display without changing settings. For documentation screenshots, `T` toggles theme editor mode, which keeps additional indicators visible. See `docs/source/development.md`; toggle it off after capture if you enabled it. Capture over USB (`C` returns a hex-encoded BMP), using the actual device path: ```sh set -o pipefail capture_dir=$(mktemp -d /tmp/ats-mini-capture.XXXXXX) printf '%s\n' "$capture_dir" printf C | socat -t 30 -T 10 - /dev/cu.usbmodem14401,echo=0,raw,ispeed=115200,ospeed=115200 | xxd -r -p > "$capture_dir/screenshot.bmp" && convert "$capture_dir/screenshot.bmp" "$capture_dir/screenshot.png" && ect -9 -strip "$capture_dir/screenshot.png" ``` For TCP, replace the USB address and its options with `TCP4:atsmini.local:60000,connect-timeout=5`. The pipeline is normally silent; wait for completion before retrying. Check command results and inspect the PNG at native resolution. If capture is incomplete or mixed with console output, retry on a quiet connection before replacing any image. For manual updates, inspect `docs/source/manual.md` and its existing screenshots. Replace only the requested images in `docs/source/_static/`, preserving filenames. Restore settings changed for capture and report the saved paths.
GitHub에서 보기