Skip to main content

flash

Build and flash the ESP32 firmware via PlatformIO. TRIGGER when the user says "flash", "upload", "build and upload", or "deploy to ESP32". Detects the serial port automatically.

Aller à l'installation

Informations de source

Dépôt
weaties/RudderAngle
Dernière activité de la source
25 mars 2026 à 20:39
Langue détectée de SKILL.md
anglais
Étoiles
0
Forks
0

Options d'installation

Le prompt qui vérifie d'abord la source est sélectionné par défaut. Vous pouvez passer à une commande directe ou télécharger une copie locale.

Vérifiez les fichiers source

Lisez SKILL.md et les fichiers associés affichés par SkillsMP avant de décider de l'installer.

Affichage de SKILL.md

SKILL.md
Instructions source · Aperçu en lecture seule
name
flash
description
Build and flash the ESP32 firmware via PlatformIO. TRIGGER when the user says "flash", "upload", "build and upload", or "deploy to ESP32". Detects the serial port automatically.
# /flash — Build & Flash ESP32 Build the firmware and upload it to the connected ESP32. ## Steps 1. Verify `credentials.h` exists: ```bash test -f rudder-sensor/include/credentials.h || { echo "ERROR: credentials.h missing — copy credentials.example.h"; exit 1; } ``` 2. Detect the serial port: ```bash ls /dev/cu.usbserial-* 2>/dev/null ``` If no port found, tell the user to check their USB cable (charge-only cables won't work) and that the ESP32 must be plugged in via USB. 3. Build and upload: ```bash cd rudder-sensor && pio run -t upload --upload-port <detected-port> ``` 4. If the build fails: - Missing `credentials.h` → tell user to copy from example - PlatformIO SSL/mirror errors → see CLAUDE.md for esptoolpy workaround - C++ errors → read the failing file and fix 5. After successful flash, offer to open the serial monitor: ```bash pio device monitor --port <detected-port> ``` ## Arguments - `/flash` — auto-detect port, build and upload - `/flash monitor` — flash then open serial monitor
Voir sur GitHub