From what I understand, this may be possible by ACS and I have created a code but this light has a very short delay compared to action 65: Light Flicker, it has a longer delay and I would like the code to work almost equal to this. What should I change in the code?
Code: Select all
Script 2 OPEN{
Light_ChangeToValue (3, 256);
delay (random (0, 1) * 64 + 1);
while (1){
Light_ChangeToValue (3, 160);
delay (random (1,7));
Light_ChangeToValue (3, 256);
delay (random (1,23));
}
}