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
Load Inkplate2_Peripheral_Mode from InkplateLibrary examples
clear display, add hello world text and display framebuffer via serial, eg.:
#K(1)*
#C("48454c4c4f20574f524c44")*
#L(1)*
Observer blank white screen after refresh
Workaround: Add text color command, e.g.:
case 'H':
// Set text and background color
sscanf(s + 3, "%d,%d", &foreGroundColor, &backGroundColor);
display.setTextColor(foreGroundColor, backGroundColor);
break;
Then:
clear display, set text color, add hello world text and display framebuffer via serial, eg.: