We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3815e90 commit 2f380d0Copy full SHA for 2f380d0
examples/Inkplate6FLICK/Diagnostics/Inkplate6FLICK_Factory_Programming_VCOM/test.cpp
@@ -173,6 +173,12 @@ void testPeripheral()
173
}
174
175
// Text wake up button
176
+ // Disable touchscreen to avoid accidental TS INT trigger that would trigger WAKE button.
177
+ // (since Touch INT and WAKE BTN share same line).
178
+ display.tsInit(true);
179
+ // Wait a little bit.
180
+ delay(100);
181
+
182
long beginWakeUpTest = millis();
183
int wakeButtonState = digitalRead(GPIO_NUM_36);
184
@@ -414,4 +420,4 @@ void failHandler(bool printErrorOnSerial)
414
420
// Inf. loop... halt the program!
415
421
while (true)
416
422
delay(1000);
417
-}
423
+}
0 commit comments