From 2f36caf4e8e2a016c8ae6a75c94cfb32244e36b9 Mon Sep 17 00:00:00 2001 From: powerfeatherdev Date: Thu, 21 Mar 2024 16:54:47 +0800 Subject: [PATCH] Define Wire1 pins for ESP32-S3 PowerFeather --- variants/esp32s3_powerfeather/pins_arduino.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/variants/esp32s3_powerfeather/pins_arduino.h b/variants/esp32s3_powerfeather/pins_arduino.h index fb57b8e6d70..b2fbe82bbfe 100644 --- a/variants/esp32s3_powerfeather/pins_arduino.h +++ b/variants/esp32s3_powerfeather/pins_arduino.h @@ -36,6 +36,10 @@ static const uint8_t SCK = 39; static const uint8_t SCL = 36; static const uint8_t SDA = 35; +#define WIRE1_PIN_DEFINED 1 +static const uint8_t SCL1 = 48; +static const uint8_t SDA1 = 47; + static const uint8_t A0 = 10; static const uint8_t A1 = 9; static const uint8_t A2 = 8;