What problem does it solve?
This Skill provides a comprehensive, step-by-step hardware debugging protocol for maker circuits (Arduino/ESP32/RP2040) to diagnose power, grounding, signal, and component issues.
Core Features & Use Cases
- I2C/GPIO/ADC diagnostic sketches: Generate Arduino diagnostic sketches to test interfaces and signals.
- Measurement procedures: Reference measurement procedures and best practices for using a multimeter to verify voltages, continuity, resistance, and currents.
- Use Case: Imagine troubleshooting a non-responsive ESP32 project where I2C sensors don't appear; run the generator and measurement procedures to isolate the fault.
Quick Start
Use the circuit-debugger skill to generate and run diagnostic sketches:
- uv run scripts/generate_debug_sketch.py --i2c
- uv run scripts/generate_debug_sketch.py --gpio --pins 2,3,4,5 --output gpio_test.ino
- uv run scripts/generate_debug_sketch.py --adc --pins A0,A1,A2
- uv run scripts/generate_debug_sketch.py --all
- uv run scripts/generate_debug_sketch.py --interactive