aboutsummaryrefslogtreecommitdiff
path: root/code/002-button.js
diff options
context:
space:
mode:
Diffstat (limited to 'code/002-button.js')
-rw-r--r--code/002-button.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/code/002-button.js b/code/002-button.js
new file mode 100644
index 0000000..e98ace2
--- /dev/null
+++ b/code/002-button.js
@@ -0,0 +1,7 @@
+var on = false;
+var change = function() {
+ on = !on;
+ LED1.write(on);
+ };
+
+setWatch(change, BTN1, {repeat:true, edge:"rising"}); \ No newline at end of file