diff options
| author | opekk <maciek09874@gmail.com> | 2026-05-16 14:23:57 +0200 |
|---|---|---|
| committer | opekk <maciek09874@gmail.com> | 2026-05-16 14:23:57 +0200 |
| commit | 2330a65290fdcf101c419fa25da89a405e96ec9c (patch) | |
| tree | 512912938801759f7fbdbfa51daf38cbb2685014 | |
| parent | 3237b9ed875ffe622a9761ecf72af66eab71b141 (diff) | |
feat: pins define for esp32
| -rw-r--r-- | include/config.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h new file mode 100644 index 0000000..5e54654 --- /dev/null +++ b/include/config.h @@ -0,0 +1,14 @@ +#ifndef CONFIG_H +#define CONFIG_H + +#define PWM 13 + +#define LED_SCL 33 +#define LED_SDA 34 +#define LED_RES 35 +#define LED_DC 36 +#define LED_CS 37 + +#define DS_DATA 39 + +#endif
\ No newline at end of file |