diff --git a/examples/simple/simple.ino b/examples/simple/simple.ino index 7735bc0..f5dfa90 100644 --- a/examples/simple/simple.ino +++ b/examples/simple/simple.ino @@ -38,6 +38,13 @@ supported boards. Notes have been moved to the bottom of the code. uint8_t clockPin = 13; uint8_t latchPin = 0; uint8_t oePin = 1; +#elif defined(ARDUINO_ADAFRUIT_FEATHER_ESP32C6) // Feather ESP32-C6 + // not featherwing compatible, but can 'hand wire' if desired + uint8_t rgbPins[] = {6, A3, A1, A0, A2, 0}; + uint8_t addrPins[] = {8, 5, 15, 7}; + uint8_t clockPin = 14; + uint8_t latchPin = RX; + uint8_t oePin = TX; #elif defined(ARDUINO_ADAFRUIT_FEATHER_ESP32S2) // Feather ESP32-S2 // M0/M4/RP2040 Matrix FeatherWing compatible: uint8_t rgbPins[] = {6, 5, 9, 11, 10, 12};