any idea of a hack to allow stuff already on screen of color other than black ( for ex ) to be all set to a particular color ?
I'm not 100% sure I understand this, but I guess you have two options:
g.buffer
drawImage
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I'm not 100% sure I understand this, but I guess you have two options:
g.buffer
. If the display is paletted you could supply a lookup table for old->new color, which would be quite fastdrawImage
- but I'm not 100% sure.