From e1cec30494d00af399da79803232390bae63b711 Mon Sep 17 00:00:00 2001 From: SooDragon <82627949+SooDragon@users.noreply.github.com> Date: Fri, 10 May 2024 21:10:42 +0900 Subject: [PATCH] fix: I2C pin are relocated for arduino nano compatability (#9610) 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;