From e606dad1766ad6d113a2ffdacdce1b70a76dbbc3 Mon Sep 17 00:00:00 2001 From: SooDragon Date: Fri, 10 May 2024 18:31:09 +0900 Subject: [PATCH] fix: I2C pin are relocated for arduino nano compatability fix: I2C pin are relocated for arduino nano compatability --- variants/Geekble_ESP32C3/pins_arduino.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variants/Geekble_ESP32C3/pins_arduino.h b/variants/Geekble_ESP32C3/pins_arduino.h index b36d5e16bc6..4eec3aa2f68 100644 --- a/variants/Geekble_ESP32C3/pins_arduino.h +++ b/variants/Geekble_ESP32C3/pins_arduino.h @@ -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;