Tools/utilities for accessing Espruino devices from websites.
Super-simple library for accessing Bluetooth LE, Serial and USB Espruino devices straight from the web browser.
UART.write('LED1.set();\n');
Library to help converting images into a format suitable for Espruino.
var img = document.getElementById("image");
var jscode = imageconverter.imagetoString(img, {mode:"1bit", diffusion:"error"});
try out:
JavaScript port of the heatshrink library for use with the heatshrink compression library inside Espruino.
var data = new Uint8Array(...);;
var compressed = heatshrink.compress(data);
data = heatshrink.decompress(compressed);
Super-simple library for accessing Bluetooth LE. It's recommended
you use uart.js
now as it supports more communication types.
Puck.write('LED1.set();\n');