From b64766ce9f8982a04740a7b0c8bf82ca125380f3 Mon Sep 17 00:00:00 2001 From: clawdia Date: Mon, 10 Aug 2026 11:35:18 +0200 Subject: [PATCH] Add PlatformIO config for ESP32-C6 + NeoPixel --- platformio.ini | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 platformio.ini diff --git a/platformio.ini b/platformio.ini new file mode 100644 index 0000000..09db261 --- /dev/null +++ b/platformio.ini @@ -0,0 +1,14 @@ +; PlatformIO Project Configuration File +; ESP32-C6 mit WS2812B LED-Streifen (30 LEDs) + +[env:esp32-c6-devkitc-1] +platform = espressif32 +board = esp32-c6-devkitc-1 +framework = arduino +monitor_speed = 115200 +lib_deps = + adafruit/Adafruit NeoPixel@^1.12.3 +build_flags = + -D LED_PIN=GPIO6 + -D NUM_LEDS=30 + -D WS2812B_SERIAL_SPEED=800000