Just done - if you use a new firmware, create an image, go to http://www.espruino.com/Image+Converter and create it to a 1bpp white/black 'image string'. Then write to storage:
There's no rotation done, so you'll need to rotate it yourself to landscape, then sort out what you need rotation-wise in the init code :)
You may also have the image shifted up by one line because of the terminal, but you can actually disable the terminal completely by removing the internal link to the graphics object. Either do it right at the start of your 'save to flash' code, or add E.setBootCode('delete global["\xff"].gfx')
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.
Just done - if you use a new firmware, create an image, go to http://www.espruino.com/Image+Converter and create it to a 1bpp white/black 'image string'. Then write to storage:
There's no rotation done, so you'll need to rotate it yourself to landscape, then sort out what you need rotation-wise in the init code :)
You may also have the image shifted up by one line because of the terminal, but you can actually disable the terminal completely by removing the internal link to the graphics object. Either do it right at the start of your 'save to flash' code, or add
E.setBootCode('delete global["\xff"].gfx')