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

fix: I2C pin are relocated for arduino nano compatability
This commit is contained in:
SooDragon 2024-05-10 21:10:42 +09:00 committed by GitHub
parent afa5f41328
commit e1cec30494
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;