diff options
| author | EnricoGuccii <partyka.003@gmail.com> | 2025-05-07 13:02:37 +0200 |
|---|---|---|
| committer | EnricoGuccii <partyka.003@gmail.com> | 2025-05-07 13:02:37 +0200 |
| commit | fe73dbbf9b6864c2064ec8d002a8a1212fafb54a (patch) | |
| tree | 8401ac231d01dc3788008adb988b09c7bf1e8b0e /include/settings.h | |
| parent | d7ea4d727b14870829464f79839acd60b82faa0b (diff) | |
file structure, rgb class
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 |