From 32641893e75f11903489a38a201bd661c8f99b50 Mon Sep 17 00:00:00 2001 From: cheapie Date: Fri, 7 Jan 2022 16:51:04 -0600 Subject: Add examples for a few devices --- lc_examples/ioexpander.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lc_examples/ioexpander.lua (limited to 'lc_examples/ioexpander.lua') diff --git a/lc_examples/ioexpander.lua b/lc_examples/ioexpander.lua new file mode 100644 index 0000000..02a8fee --- /dev/null +++ b/lc_examples/ioexpander.lua @@ -0,0 +1,14 @@ +--Digilines I/O Expander Example + +--Connect two I/O expanders, one on channel "expander1" and one on "expander2" +--The pins on the second expander will follow the input states on the first one. +--In addition, whenever an input on the first expander changes, a line will be logged to the terminal with the new state. + +local function iostr(pin) + return (pin and "1" or "0") +end + +if event.channel == "expander1" then + digiline_send("expander2",event.msg) + print(string.format("A: %s B: %s C: %s D: %s",iostr(event.msg.a),iostr(event.msg.b),iostr(event.msg.c),iostr(event.msg.d))) +end -- cgit v1.2.3