07e5cd8994
PixelStomp MUX uses: - WS2812C LEDs: one data line via DAT (GPIO 9), NeoPixel protocol - 74HC165 shift register: LD/CLK/DI for reading 8 button states Changes: - Use Adafruit NeoPixel library for LED control - Proper 74HC165 parallel-load shift-in for buttons - 8 switches + 8 LEDs (was incorrectly 10) - Diagnostic commands: dump, ledtest, red, green, blue, read
21 lines
454 B
INI
21 lines
454 B
INI
; PlatformIO project configuration
|
|
; ESP32-S3 Loopy Pro Launchpad-Compatible Foot Controller
|
|
|
|
[env:esp32s3]
|
|
platform = espressif32
|
|
board = esp32-s3-devkitc-1
|
|
framework = arduino
|
|
|
|
lib_deps =
|
|
adafruit/Adafruit TinyUSB Library@^2.0.0
|
|
adafruit/Adafruit NeoPixel@^1.12.0
|
|
|
|
build_flags =
|
|
-DARDUINO_USB_MODE=1
|
|
-DARDUINO_USB_CDC_ON_BOOT=1
|
|
|
|
monitor_speed = 115200
|
|
|
|
board_build.partitions = default_8MB.csv
|
|
board_build.arduino.memory_type = qio_opi
|