You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/Inkplate6COLOR/Advanced/DeepSleep/Inkplate6COLOR_Simple_Deep_Sleep/Inkplate6COLOR_Simple_Deep_Sleep.ino
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -39,12 +39,16 @@ Inkplate display; // Create an object on Inkplate library and also set library i
39
39
40
40
voidsetup()
41
41
{
42
+
Serial.begin(115200);
43
+
Serial.println("about begin..."); Serial.flush();
42
44
display.begin(); // Init Inkplate library (you should call this function ONLY ONCE)
43
45
display.clearDisplay(); // Clear frame buffer of display
44
46
display.drawImage(
45
47
pictures[slide], 0, 0, 600,
46
48
448); // Display selected picture at location X=0, Y=0. All three pictures have resolution of 600x448 pixels
49
+
Serial.println("displayin..."); Serial.flush();
47
50
display.display(); // Refresh the screen with new picture
0 commit comments