31.12.2022, 11:00
Maybe someone can help me why this isn't working?
This is working fine
But this one doesn't, the only thing that was change is the last part of the groupadres, it has a 3 digit.
Is it possible to get this working too?
I have group object from 200 til 220 that i would move, like the first script is doing.
All the group addresses have the same data type too.
This is working fine
Code:
prefix = '56/0/'
for i = 20, 1, -1 do
value = grp.getvalue(prefix .. (i - 1))
grp.checkupdate(prefix .. i, value)
end
Code:
prefix = '56/0/'
for i = 20, 201, -1 do
value = grp.getvalue(prefix .. (i - 1))
grp.checkupdate(prefix .. i, value)
end
Is it possible to get this working too?
I have group object from 200 til 220 that i would move, like the first script is doing.
All the group addresses have the same data type too.