summaryrefslogtreecommitdiff
path: root/mesecons_luacontroller/examples/clock.lua
diff options
context:
space:
mode:
Diffstat (limited to 'mesecons_luacontroller/examples/clock.lua')
-rw-r--r--mesecons_luacontroller/examples/clock.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/mesecons_luacontroller/examples/clock.lua b/mesecons_luacontroller/examples/clock.lua
new file mode 100644
index 0000000..262aac2
--- /dev/null
+++ b/mesecons_luacontroller/examples/clock.lua
@@ -0,0 +1,7 @@
+--Interrupt-Driven Clock
+--Continually pulses pin A, turning on/off once per second.
+
+if event.type == "program" or event.iid == "clock" then
+ port.a = not port.a
+ interrupt(1,"clock",true)
+end