Push-Message only once

Hello all,

I’m looking for a solution to only receive once a push message for a Temperature notification.

What do i wanna do.

When the Temperature in the room is greater then 25 then send a push to mobile, "The temp is greater then 25"now when the temperature is 25.1 or 25.2 Homey sends a push notification,

And when the temperature is greater then 30 then send a push to mobile “The temp is greater then 30”
here the same story, when the temp is 30.1, 30.2 and so on Homey send a push notification.

How can i make the flow that i only receive a push at 25 and a push at 30 and not for the temp in between?

Thanks in advance.

Patrick.

FLOW1:
IF temp changes
AND temperature >25
THEN send pusmessage
& disable FLOW1
& enable FLOW2
(See flow actions)

FLOW2
IF temp changes
AND temperature <25
THEN enable FLOW1
& disable FLOW2

1 Like

Yes, fairly simple to achieve, you only need to know it :slight_smile:

Thanks for the response !

The notification you’ll receive is basically incorrect: the temp is not greater than 25, but it is exactly 25.

IF temp changes
AND temperature is exactly 25
OR temperature is exactly 30
THEN send pushmessage ‘The temp is [TAG]’

Right?