Web Interface
vue.js, webpack, pug
Backend
NodeJS, Tiny Router
Pump Control
Tessel API, GPIO
100% JAVASCRIPT
RECIPES
[
]
,
,
,
pumps =
[ 0, 70, 120, 0]
cuba libre =
[ 70, 0, 0, 120]
Hi Fi =
// Import the hardware library
var tessel = require('tessel');
// Turn a LED on before the loop.
tessel.led[2].on();
// Blink!!!
setInterval(function () {
tessel.led[2].toggle();
tessel.led[3].toggle();
}, 100);
console.log("Pisca! (Press CTRL + C to interrupt)");