bredmond Posted June 18, 2013 Posted June 18, 2013 Here is the program that I want to use to have the lights, when turned on, be at 50%. It works from the ISY but not from the switch. if From 8:00 pm For 7 hours Then In Scene 'Kitchen Lights' Set 'Kitchen Lights 1' 50% (on level) In Scene 'Kitchen Lights' Set 'Kitchen Lights 2' 50% (on level) else In Scene 'Kitchen Lights' Set 'Kitchen Lights 1' 100% (on level) In Scene 'Kitchen Lights' Set 'Kitchen Lights 2' 100% (on level) Kitchen Lights 1 and 2 are the two switches that control the lights. Any help is much appreciated. Thanks, Bill
LeeG Posted June 18, 2013 Posted June 18, 2013 The program is currently changing the Scene Responder On Levels which affect what happens when the Scene is executed by the Admin Console or a Program. More Adjust Scene statements are needed to change the Local values which are what is used when the local paddle is used. The individual devices Kitchen Lights 1 and Kitchen Lights 2 must be Controllers in a Scene. When the device node name is specified in both the In Scene and Set parameters of the Adjust Scene statements the Local On Level (in this case) is set. if From 8:00 pm For 7 hours Then In Scene 'Kitchen Lights' Set 'Kitchen Lights 1' 50% (on level) In Scene 'Kitchen Lights' Set 'Kitchen Lights 2' 50% (on level) In Scene 'Kitchen Lights 1' Set 'Kitchen Lights 1' 50% (on level) In Scene 'Kitchen Lights 2' Set 'Kitchen Lights 2' 50% (on level) else In Scene 'Kitchen Lights' Set 'Kitchen Lights 1' 100% (on level) In Scene 'Kitchen Lights' Set 'Kitchen Lights 2' 100% (on level) In Scene 'Kitchen Lights 1' Set 'Kitchen Lights 1' 100% (on level) In Scene 'Kitchen Lights 2' Set 'Kitchen Lights 2' 100% (on level)
Recommended Posts