Skip to content

Fix some hardware definition pins #6353

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 28, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion boards.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5220,7 +5220,7 @@ adafruit_qtpy_esp32c3.menu.DebugLevel.verbose=Verbose
adafruit_qtpy_esp32c3.menu.DebugLevel.verbose.build.code_debug=5


adafruit_qtpy_esp32_pico.name=Adafruit QT Py ESP32 Pico
adafruit_qtpy_esp32_pico.name=Adafruit QT Py ESP32

adafruit_qtpy_esp32_pico.upload.tool=esptool_py
adafruit_qtpy_esp32_pico.upload.maximum_size=1310720
Expand Down
9 changes: 5 additions & 4 deletions variants/adafruit_feather_esp32_v2/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ static const uint8_t LED_BUILTIN = 13;
#define BUILTIN_LED LED_BUILTIN // backward compatibility
#define LED_BUILTIN LED_BUILTIN

static const uint8_t TX = 7;
static const uint8_t RX = 8;
static const uint8_t TX1 = 7;
static const uint8_t RX1 = 8;
static const uint8_t TX = 8;
static const uint8_t RX = 7;
static const uint8_t TX1 = 8;
static const uint8_t RX1 = 7;

static const uint8_t SDA = 22;
static const uint8_t SCL = 20;
Expand Down Expand Up @@ -52,6 +52,7 @@ static const uint8_t BUTTON = 38;

// Neopixel
static const uint8_t NEOPIXEL_PIN = 0;
static const uint8_t PIN_NEOPIXEL = 0;

// Neopixel & I2C power
static const uint8_t NEOPIXEL_I2C_POWER = 2;
Expand Down
10 changes: 5 additions & 5 deletions variants/adafruit_qtpy_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 = 7;
#define TX1 32
#define RX1 7

static const uint8_t SDA = 25;
static const uint8_t SDA = 4;
static const uint8_t SCL = 33;

static const uint8_t SDA1 = 22;
Expand All @@ -31,11 +31,11 @@ static const uint8_t MOSI = 13;
static const uint8_t MISO = 12;
static const uint8_t SCK = 14;

static const uint8_t A0 = 15;
static const uint8_t A1 = 4;
static const uint8_t A0 = 26;
static const uint8_t A1 = 25;
static const uint8_t A2 = 27;
static const uint8_t A3 = 26;
static const uint8_t A4 = 25;
static const uint8_t A3 = 15;
static const uint8_t A4 = 4;
static const uint8_t A5 = 33;
static const uint8_t A6 = 32;
static const uint8_t A7 = 7;
Expand Down