Unverified Commit e1cec304 authored by SooDragon's avatar SooDragon Committed by GitHub

fix: I2C pin are relocated for arduino nano compatability (#9610)

fix: I2C pin are relocated for arduino nano compatability
parent afa5f413
...@@ -14,8 +14,8 @@ static const uint8_t SW_BUILTIN = 9; ...@@ -14,8 +14,8 @@ static const uint8_t SW_BUILTIN = 9;
static const uint8_t TX = 21; static const uint8_t TX = 21;
static const uint8_t RX = 20; static const uint8_t RX = 20;
static const uint8_t SDA = 8; static const uint8_t SDA = 4;
static const uint8_t SCL = 9; static const uint8_t SCL = 5;
static const uint8_t SS = 7; static const uint8_t SS = 7;
static const uint8_t MOSI = 6; static const uint8_t MOSI = 6;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment