Skip to content

Commit

Permalink
fix: I2C pin are relocated for arduino nano compatability (espressif#…
Browse files Browse the repository at this point in the history
…9610)

fix: I2C pin are relocated for arduino nano compatability
  • Loading branch information
SooDragon authored May 10, 2024
1 parent afa5f41 commit e1cec30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variants/Geekble_ESP32C3/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ static const uint8_t SW_BUILTIN = 9;
static const uint8_t TX = 21;
static const uint8_t RX = 20;

static const uint8_t SDA = 8;
static const uint8_t SCL = 9;
static const uint8_t SDA = 4;
static const uint8_t SCL = 5;

static const uint8_t SS = 7;
static const uint8_t MOSI = 6;
Expand Down

0 comments on commit e1cec30

Please sign in to comment.