add c6
This commit is contained in:
parent
cffac25915
commit
ca4f8764be
1 changed files with 7 additions and 0 deletions
|
|
@ -38,6 +38,13 @@ supported boards. Notes have been moved to the bottom of the code.
|
||||||
uint8_t clockPin = 13;
|
uint8_t clockPin = 13;
|
||||||
uint8_t latchPin = 0;
|
uint8_t latchPin = 0;
|
||||||
uint8_t oePin = 1;
|
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
|
#elif defined(ARDUINO_ADAFRUIT_FEATHER_ESP32S2) // Feather ESP32-S2
|
||||||
// M0/M4/RP2040 Matrix FeatherWing compatible:
|
// M0/M4/RP2040 Matrix FeatherWing compatible:
|
||||||
uint8_t rgbPins[] = {6, 5, 9, 11, 10, 12};
|
uint8_t rgbPins[] = {6, 5, 9, 11, 10, 12};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue