Skip to content

Instantly share code, notes, and snippets.

@bathtimefish
Created August 2, 2015 23:42
Show Gist options
  • Save bathtimefish/7ba561a8512595e315fb to your computer and use it in GitHub Desktop.
Save bathtimefish/7ba561a8512595e315fb to your computer and use it in GitHub Desktop.
Espruino Lチカ サンプル
var on1 = true;
var on2 = false;
setInterval(function() {
on1 = !on1;
on2 = !on2;
LED1.write(on1);
LED2.write(on2);
var a = BTN1;
console.log(digitalRead(a));
}, 50);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment