Skip to content

Commit

Permalink
Fix SS pin for Adafruit Feather variant of the ESP32 board (#2344)
Browse files Browse the repository at this point in the history
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 #1586 as a fix. I've tried this locally on my board and it is working correctly.
  • Loading branch information
mcwhittemore authored and me-no-dev committed Jan 22, 2019
1 parent 489feb8 commit 2ba1e66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion variants/feather_esp32/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ static const uint8_t RX = 16;
static const uint8_t SDA = 23;
static const uint8_t SCL = 22;

static const uint8_t SS = 2;
static const uint8_t SS = 33;
static const uint8_t MOSI = 18;
static const uint8_t MISO = 19;
static const uint8_t SCK = 5;
Expand Down

0 comments on commit 2ba1e66

Please sign in to comment.