Add files via upload

This commit is contained in:
Sjef Verhoeven PE5PVB
2023-06-01 16:12:24 +02:00
committed by GitHub
parent 715216923d
commit ed302d83ec
14 changed files with 4826 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#define TFT_BLACK 0x0000 /* 0, 0, 0 */
#define TFT_DARKGREY 0x7BEF /* 128, 128, 128 */
#define TFT_BLUE 0xF800 /* 255, 0, 0 */
#define TFT_GREEN 0x07E0 /* 0, 255, 0 */
#define TFT_RED 0x001F /* 0, 0, 255 */
#define TFT_YELLOW 0x07FF /* 0, 255, 255 */
#define TFT_WHITE 0xFFFF /* 255, 255, 255 */
#define TFT_SKYBLUE 0x867D /* 235, 206, 135 */