Hi,
Just to say that I finally got around to creating a NPM module for Espruino.
If you have node.js and NPM installed you can just do:
npm install -g espruino
and you'll get the command-line tool.
Instructions here
You can also use it to do things from node.js on your PC:
require('espruino').expr('/dev/ttyACM0', 'E.getTemperature()', function(temp) { console.log('Current temperature is '+temp); });
It still needs a bit of work, but hopefully this will be a good start.
@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.
Hi,
Just to say that I finally got around to creating a NPM module for Espruino.
If you have node.js and NPM installed you can just do:
and you'll get the command-line tool.
Instructions here
You can also use it to do things from node.js on your PC:
It still needs a bit of work, but hopefully this will be a good start.