diff options
Diffstat (limited to 'include/settings.h')
| -rw-r--r-- | include/settings.h | 24 |
1 files changed, 24 insertions, 0 deletions
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 |