Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2ba1e66

Browse filesBrowse 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
Copy full SHA for 2ba1e66

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎variants/feather_esp32/pins_arduino.h

Copy file name to clipboardExpand all lines: variants/feather_esp32/pins_arduino.h
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.