**edit - turns out the usage of the private boolean as I describe below is not necessary. See post 8.
What it does:
Sends a notification (using pushover) when the hot tub initially exceeds 99 degrees, using a private Boolean to prevent subsequent notifications.
This automation uses 2 rules: one to send the notifications, and a second to reset the first rule's private Boolean.
Rule 1: Send Notification
(This rule sends a notification when the temp exceeds 99 degrees, then disables itself to prevent additional notifications)
- Conditions
-- Temperature of Hut Tub Sensor > 99
-- Hot Tub switch on - Rule
-- Temperature of Hut Tub Sensor > 99
-- AND
-- Hot Tub switch on - Actions when True
-- Notify Pushover Device: 'The hot tub is hot!
-- Rule Boolean False: ** This Rule ** - Restrictions
-- Enable/Disable with private Boolean
Rule 2: Enable Rule 1
(This rule re-enables Rule 1 after the hot tub switch is turned off and the temperature drops below 99 degrees)
- Conditions
-- Hot Tub switch off
-- Temperature of Hot Tub Sensor < 99 - Rule
-- Hot Tub switch off
-- AND
-- Temperature of Hot Tub Sensor < 99 - Actions when True
-- Rule Boolean True: Rule 1