misc changes

This commit is contained in:
Sjef Verhoeven PE5PVB
2023-07-09 14:50:08 +02:00
parent 79040f330a
commit 2cfc246912
3 changed files with 18 additions and 19 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 */