15.12.2021, 12:43
(15.12.2021, 11:17)admin Wrote: You can install the System load app to check which process is producing high CPU load.Thank you
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)