From 07f6c32acddc76d1059d97150bdebf2193515cdf Mon Sep 17 00:00:00 2001 From: ladyada Date: Fri, 18 Feb 2022 15:29:27 -0500 Subject: [PATCH] fix uarts --- variants/adafruit_feather_esp32_v2/pins_arduino.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/variants/adafruit_feather_esp32_v2/pins_arduino.h b/variants/adafruit_feather_esp32_v2/pins_arduino.h index 71ddaa9f31a..f984baf5aa2 100644 --- a/variants/adafruit_feather_esp32_v2/pins_arduino.h +++ b/variants/adafruit_feather_esp32_v2/pins_arduino.h @@ -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; @@ -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;