Skip to content

Commit a04b6ed

Browse files
authored
Fix SS pin for Adafruit Feather variant of the ESP32 board
Pin 2 is not found on the [Adafruit docs](https://learn.adafruit.com/adafruit-huzzah32-esp32-feather) for this board and 33 was suggested in espressif#1586 as a fix. I've tried this locally on my board and it is working correctly.
1 parent 6cf307d commit a04b6ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

variants/feather_esp32/pins_arduino.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ static const uint8_t RX = 16;
2020
static const uint8_t SDA = 23;
2121
static const uint8_t SCL = 22;
2222

23-
static const uint8_t SS = 2;
23+
static const uint8_t SS = 33;
2424
static const uint8_t MOSI = 18;
2525
static const uint8_t MISO = 19;
2626
static const uint8_t SCK = 5;

0 commit comments

Comments
 (0)