If you wanted to do something fancy-looking reasonably easily you could take a look at this? http://www.espruino.com/Graphical+Web+InÂterface Basically just make an SVG with Inkscape and then use that.
I've started using template literals for HTML pages too so you can avoid the ' + ' stuff, so:
var pag = `<html><head><style>
td {text-align:center; vertical-align:middle; }
...
`;
// as opposed to
var pag
='<html><head><style>'
+'td {text-align:center; vertical-align:middle; }'
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.
Wow, looks great!
If you wanted to do something fancy-looking reasonably easily you could take a look at this? http://www.espruino.com/Graphical+Web+InÂterface Basically just make an SVG with Inkscape and then use that.
I've started using template literals for HTML pages too so you can avoid the
' + '
stuff, so: