Please help with schedule

Please help with schedule

Please help with schedule
Please help with schedule
2 weeks ago - last edited 2 weeks ago
Model: Tapo P115  
Hardware Version: V1
Firmware Version: 1.1.3

I have a lamp I am controlling with a P115. I want it to turn on at 5:30 am every morning and turn off when the sun rises. This works great in the winter so I can get ready for work without tripping over things.The problem is that in the summer, the sun rises before 5:30 am. This causes the lamp to turn on at 5:30 am and never turn off. How can I set the timer so that the lamp will turn on at 5:30 if sunrise comes later than 5:30 and not turn on if the sunrise has already happened?

 

Other smart apps have a setting controlling when the timer is effective, allowing the user to specify that the programmed time is only active during the configured hours. The configured hours can be hard times or connected to sunrise/sunset, just like the timer itself. If the time falls outside of the configured "active" time, the timer event is not triggered.

  0      
  0      
#1
Options
1 Reply
Re:Please help with schedule
a week ago

Just to make it more clear the following pseudo-code seems to be how Tapo currently works:

 

if currentTime = configuredOnTime (
 SwitchOn = true;
)

 

What's needed is something like:

 

if currentTime = configuredOnTime && currentTime between configuredActiveStartTime and configuredActiveEndTime (
    SwitchOn = true;
)
  0  
  0  
#2
Options