15.12.2021, 11:17
You can install the System load app to check which process is producing high CPU load.
Example for a random RGBW value:
Example for a random RGBW value:
Code:
math.randomseed(os.time())
r = math.random(0, 255)
g = math.random(0, 255)
b = math.random(0, 255)
w = math.random(0, 255)
rgbw = r * 0x1000000 + g * 0x10000 + b * 0x100 + w
grp.write('1/1/13', rgbw)