24.10.2023, 07:49
You don't need to use storage in a single script, you can simply use variables:
Your script does not work because you have two different storage keys (32/1/1 and 32/1/11). If you want to work with objects/group addresses then you need to use grp.write()/grp.update() to write values and grp.getvalue() to retrieve them.
Code:
value = 10
os.sleep(10)
log(value) -- will log 10
Your script does not work because you have two different storage keys (32/1/1 and 32/1/11). If you want to work with objects/group addresses then you need to use grp.write()/grp.update() to write values and grp.getvalue() to retrieve them.