diff options
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 |