Skip to content

Commit 2ba1e66

Browse files
mcwhittemoreme-no-dev
authored andcommitted
Fix SS pin for Adafruit Feather variant of the ESP32 board (espressif#2344)
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 489feb8 commit 2ba1e66

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)