smokegrub Posted April 17, 2014 Posted April 17, 2014 I am trying to write a program that does the following: If KPL button D is on, turn devices B and C on. Wait 2 minutes and turn device C off. I am able to program that successfully but after device C turns off I would like to program KPL button D to go to its off state. Is that possible? If so, how?
MaddBomber83 Posted April 18, 2014 Posted April 18, 2014 Place KPL Button D into a Scene as a Responder and turn that scene off to make the LED light go out.
oberkc Posted April 18, 2014 Posted April 18, 2014 If KPL button D is on, turn devices B and C on. Wait 2 minutes and turn device C off. I am able to program that successfully but after device C turns off I would like to program KPL button D to go to its off state. Is that possible? If so, how? So, when someone turns on KPL D, you want it to turn off after two minutes, along with KPL C? OK. You did not state what you want to happen if KPL turns off during the two-minute timer, so I will make no assumptions. If Status KPL D is on then set KPL C on set KPL B on wait 2 minutes set KPL C off set KPL D off else nothing
smokegrub Posted April 18, 2014 Author Posted April 18, 2014 oberkc: That is precisely what I am trying to do but I cannot find the KPL Off command. Where is it located?
oberkc Posted April 18, 2014 Posted April 18, 2014 Ah, yes. My fault. I always forget this problem. Secondary buttons cannot be controlled directly, unfortunately. They have to be put into a scene. If need be, create a scene with a single device: the KPL button. The program would then be: if status KPLD is on then set scene with KPLC on set scene with KPLB on wait 2 minutes set scene with KPLC off set scene with KPLD off else nothing sorry for my forgetfulness.
smokegrub Posted April 18, 2014 Author Posted April 18, 2014 Will this variation of your suggestion work? if status KPLD is on then set device C on set device B on wait 2 minutes set device C off set scene with KPLD off else nothing
LeeG Posted April 18, 2014 Posted April 18, 2014 Yes, if device B and device C have nothing to do with a KPL button.
Recommended Posts