From 2ba1e6606071ffc956b8cf2e3dce8f10418cf53c Mon Sep 17 00:00:00 2001 From: Matthew Chase Whittemore Date: Tue, 22 Jan 2019 04:27:42 -0500 Subject: [PATCH] Fix SS pin for Adafruit Feather variant of the ESP32 board (#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 #1586 as a fix. I've tried this locally on my board and it is working correctly. --- variants/feather_esp32/pins_arduino.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variants/feather_esp32/pins_arduino.h b/variants/feather_esp32/pins_arduino.h index f952a83e..0b298808 100644 --- a/variants/feather_esp32/pins_arduino.h +++ b/variants/feather_esp32/pins_arduino.h @@ -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;