From 7da514aa6ec19df49828fd87013ba284f338fbdd Mon Sep 17 00:00:00 2001 From: EnricoGuccii Date: Sat, 10 May 2025 19:45:32 +0200 Subject: switch to ESP32-S2FN4R2 --- include/settings.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'include/settings.h') diff --git a/include/settings.h b/include/settings.h index 45fd574..4fb4a48 100644 --- a/include/settings.h +++ b/include/settings.h @@ -5,20 +5,20 @@ const int OLED_WIDTH = 128; const int OLED_HEIGHT = 64; const int OLED_ADDR = 0x3C; -const int SDA_PIN = D2; -const int SCL_PIN = D1; +const int SCL_PIN = 8; +const int SDA_PIN = 10; // RGB LED -const int RED_PIN = D6; -const int GREEN_PIN = D5; -const int BLUE_PIN = D0; +const int RED_PIN = 2; +const int GREEN_PIN = 4; +const int BLUE_PIN = 6; // MOTORS -const int IN1 = D7; -const int IN2 = D8; +// const int IN1 = D7; +// const int IN2 = D8; -const int IN3 = D3; -const int IN4 = D4; +// const int IN3 = D3; +// const int IN4 = D4; // BUZZER -const int BUZZER_PIN = A0; \ No newline at end of file +// const int BUZZER_PIN = 3; \ No newline at end of file -- cgit v1.2.3