We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df013e2 commit edf85bfCopy full SHA for edf85bf
1 file changed
Factory_Tests/Qualia_ESP32S3_RGB666_FactoryTest/Qualia_ESP32S3_RGB666_FactoryTest.ino
@@ -90,7 +90,7 @@ void setup(void)
90
91
Serial.println("Initialized!");
92
93
- gfx->fillScreen(BLACK);
+ gfx->fillScreen(RGB565_BLACK);
94
95
expander->pinMode(PCA_TFT_BACKLIGHT, OUTPUT);
96
expander->digitalWrite(PCA_TFT_BACKLIGHT, HIGH);
@@ -125,11 +125,11 @@ void loop()
125
if (isFocalTouch && focal_ctp.touched()) {
126
TS_Point p = focal_ctp.getPoint(0);
127
Serial.printf("(%d, %d)\n", p.x, p.y);
128
- gfx->fillRect(p.x, p.y, 5, 5, WHITE);
+ gfx->fillRect(p.x, p.y, 5, 5, RGB565_WHITE);
129
} else if (!isFocalTouch && cst_ctp.touched()) {
130
CST_TS_Point p = cst_ctp.getPoint(0);
131
132
133
}
134
135
0 commit comments