diff options
| author | EnricoGuccii <partyka.003@proton.me> | 2026-05-19 20:17:31 +0200 |
|---|---|---|
| committer | EnricoGuccii <partyka.003@proton.me> | 2026-05-19 20:17:31 +0200 |
| commit | 2da0ef4521d4ffbb5485565c618a7fd74f42336f (patch) | |
| tree | e5242fbce6d8f178eccb1e52388e446eb5dc138e /include | |
| parent | 2330a65290fdcf101c419fa25da89a405e96ec9c (diff) | |
dodane biblioteki, aktualizacja pinow i mockup wyswietlacza
Diffstat (limited to 'include')
| -rw-r--r-- | include/config.h | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/include/config.h b/include/config.h index 5e54654..2ff211f 100644 --- a/include/config.h +++ b/include/config.h @@ -1,14 +1,17 @@ #ifndef CONFIG_H #define CONFIG_H -#define PWM 13 +#define TFT_CS 37 +#define TFT_DC 36 +#define TFT_RST 35 +#define TFT_MOSI 34 +#define TFT_SCLK 33 -#define LED_SCL 33 -#define LED_SDA 34 -#define LED_RES 35 -#define LED_DC 36 -#define LED_CS 37 +#define SERVO_PIN 13 -#define DS_DATA 39 +#define BUTTON_UP 3 +#define BUTTON_DOWN 5 +#define BUTTON_CONFIRM 7 +#define BUTTON_EXIT 9 -#endif
\ No newline at end of file +#endif |