Espruino/code/voice.js
Gordon Williams f3d6e0bc83 First commit
2013-09-26 14:39:04 +01:00

17 lines
394 B
JavaScript

// Espruino bluetooth voice activation
var command = "";
Serial3.onData(function(e) {
command += e.data;
if (e.data==" " || e.data=="\n") {
command="";
} else {
print(command);
if (command=="red") LED1.set();
if (command=="green") LED2.set();
if (command=="blue") LED3.set();
if (command=="off") { LED1.reset(); LED2.reset(); LED3.reset(); }
}
});