summaryrefslogtreecommitdiff
path: root/mesecons_luacontroller/examples/rslatch.lua
diff options
context:
space:
mode:
Diffstat (limited to 'mesecons_luacontroller/examples/rslatch.lua')
-rw-r--r--mesecons_luacontroller/examples/rslatch.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/mesecons_luacontroller/examples/rslatch.lua b/mesecons_luacontroller/examples/rslatch.lua
new file mode 100644
index 0000000..1257396
--- /dev/null
+++ b/mesecons_luacontroller/examples/rslatch.lua
@@ -0,0 +1,18 @@
+--R/S Latch
+--When S is active, Q turns on.
+--When R is active, Q turns off.
+--/Q is always the opposite of Q.
+
+--Pin Assignments:
+-- S: Pin A
+-- R: Pin B
+-- Q: Pin C
+--/Q: Pin D
+
+if pin.a then
+ port.c = true
+elseif pin.b then
+ port.c = false
+end
+
+port.d = not port.c