Execute action once per day


#1

I would like for the piston to send me PUSH notifications only once per day even though the piston might run multiple times daily.

I dont want my phone buzzing every 30 minutes. Maybe if I could set notifications to be sent only once around 3 pm that would be ideal. That way I know the psiton is running and I am not bothered.


#2

Snapshot of the piston would be useful so people can best advise you with your particular piston.
There are lots of ways to do it but they may not be compatible with your piston.

IF
TIME
At 3:00 pm
AND
Variable notificationsent = false
DO
Send notification blah blah blah
Set Var Notificationsent (Boolean) = true.

IF
TIME
At 0:01 am
DO
Set Var Notificationsent (Boolean) = false

May work, may not. Need that snapshot.


#3

If it’s non-schedule based, you could do something like this:


#4

Here you go. I want notification after thermostat set to 68F but once/day preferable around 3 pm.


#5

Something like this should work.