Search found 1 match

by argoon
Monday 09 January 2017 8:52
Forum: Other questions and discussions
Topic: Multiple commands on a dimmer in LUA
Replies: 0
Views: 720

Multiple commands on a dimmer in LUA

Hi,

I'd like to send 2 successive orders to one dimmer device (a light).
Sending 2 command is OK for On or Off command, but I don't know the syntax for a dimmer

Here is an example of working script :)

commandArray[1] = {[light] = 'On'}
commandArray[2] = {[light] = 'Off AFTER 10'}


But this ...