summaryrefslogtreecommitdiff
path: root/lc_examples/ioexpander.lua
blob: 02a8fee0f604ee6d3053fee60815161b638cc6e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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