Created
August 2, 2015 23:42
-
-
Save bathtimefish/7ba561a8512595e315fb to your computer and use it in GitHub Desktop.
Espruino Lチカ サンプル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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