29.07.2016, 08:42
Set object address filter to 0/1/*, then click Mass edit in table footer. There you can select which fields to edit for all selected objects.
As for status issue, can you check if Objects tab values are correct after sending read request?
Also, sensing many read requests at once might cause some devices to reply with Busy status. Having a small delay between read requests is a correct approach. You can do it like this with tags:
As for status issue, can you check if Objects tab values are correct after sending read request?
Also, sensing many read requests at once might cause some devices to reply with Busy status. Having a small delay between read requests is a correct approach. You can do it like this with tags:
Code:
syncobjects = grp.tag('sync')
for _, syncobject in ipairs(syncobjects) do
syncobject:read()
os.sleep(0.5)
end