From fe73dbbf9b6864c2064ec8d002a8a1212fafb54a Mon Sep 17 00:00:00 2001 From: EnricoGuccii Date: Wed, 7 May 2025 13:02:37 +0200 Subject: file structure, rgb class --- include/settings.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 include/settings.h (limited to 'include') diff --git a/include/settings.h b/include/settings.h new file mode 100644 index 0000000..45fd574 --- /dev/null +++ b/include/settings.h @@ -0,0 +1,24 @@ +#pragma once + +// OLED +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; + +// RGB LED +const int RED_PIN = D6; +const int GREEN_PIN = D5; +const int BLUE_PIN = D0; + +// MOTORS +const int IN1 = D7; +const int IN2 = D8; + +const int IN3 = D3; +const int IN4 = D4; + +// BUZZER +const int BUZZER_PIN = A0; \ No newline at end of file -- cgit v1.2.3