Skip to content

Commit

Permalink
fix uarts
Browse files Browse the repository at this point in the history
  • Loading branch information
ladyada authored and ladyada committed Feb 18, 2022
1 parent 50e9772 commit 07f6c32
Showing 1 changed file with 5 additions and 4 deletions.
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

0 comments on commit 07f6c32

Please sign in to comment.