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.:
thank you for your contribution, we have half-completed a new Inkplate peripheral mode which should contain all these commands. We will however still review your PR regarding this and see if we can implement it to the existing example for Inkplate 2.
Steps to reproduce:
Inkplate2_Peripheral_Mode
fromInkplateLibrary
exampleshello world
text and display framebuffer via serial, eg.:Workaround: Add text color command, e.g.:
Then:
hello world
text and display framebuffer via serial, eg.:Also the documentation lacks the setTextColor method:
The text was updated successfully, but these errors were encountered: