290
L Log each group change
E Export. Used to map this group automatically
to KNX group (Objects tab in LogicMachine)
P Post process. Execute a script on group address change
R Read on initialization (device start)
Location location of the object/group
27.14. Reset the device
Press programming button for ~3 sec and release when the device blinks red twice. Wait
while green LED will blink once. Preferably is to restart the power as well after this is
done.
27.15. Accessing canX objects from LogicMachine scripts
To use canX configuration from LogicMachine scripts use scripting
Control via script via grp address:
can = require('canx')
can.sendrequest({
data = event.getvalue(),
command = can.cmds.group.valuewrite,
groupaddress = 1,
})
Control via physicall address:
Change lineid / nodeid to match your relay device settings.
can.sendrequest({
lineid = 0,
nodeid = 1,
objectid = 1,
command = can.cmds.object.valuewrite,