Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions variants/nina_w10/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ static const uint8_t RX = 3;
static const uint8_t SDA = 12;
static const uint8_t SCL = 13;

static const uint8_t SS = 5;
static const uint8_t MOSI = 23;
static const uint8_t MISO = 19;
static const uint8_t SCK = 18;
static const uint8_t SS = 34;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't this change be being made in variants/nora_w10/pins_arduino.h that was added via https://github.com/espressif/arduino-esp32/pull/7191/files?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for letting me know, my mistake, here is the correct fix.
#7208

static const uint8_t MOSI = 35;
static const uint8_t MISO = 37;
static const uint8_t SCK = 36;

static const uint8_t A0 = 36;
static const uint8_t A3 = 39;
Expand Down