30.01.2019, 12:00
You should use a scheduled script for such large intervals. You can tag all objects that needs re-send action and use this script:
Code:
objects = grp.tag('resend')
for _, object in ipairs(objects) do
grp.write(object.address, object.value)
sleep(0.1)
end