Run rule once a day

I have a RM rule that sends a notification to my phone when the outside temp is less than the inside temp.

I only need one notification. How do I limit this? In it's current configuration I would get a notification every few minutes.

Thanks

Many ways to achieve this, here's one

Trigger Event
Time is 12:00 AM

Actions to Run
Wait for event: outside temp < inside temp
Send notification to phone
3 Likes

Cool, Thanks!

I'd also be interested in the other ways to achieve this?

Create a boolean hub variable RunOnce and set its initial state to True.

Required Expression
RunOne is true

Trigger events
outside temp < inside temp

Actions to Run
Set RunOnce false
Send notification to phone
Wait for event: time is 12:00 AM
Set RunOnce true

For a third option, use a virtual switch instead of a hub variable but follow the basic logic above.

1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.