Jump to content
C4 Forums | Control4

Delays between Push Notifications?


C4 BEAR

Recommended Posts

Hi all.

 

I have some programming that will send a push notification to my iPhone to let me know if a particular room is hotter than I want it to be. The push notifications work very well, but I was wondering if there was a way to have a delay of say...15 minutes between a particular notification? Right now I get them a few times a minute and it is quite annoying.

 

Thank you in advance for any info.

Link to comment
Share on other sites


12 minutes ago, C4 BEAR said:

Hi all.

 

I have some programming that will send a push notification to my iPhone to let me know if a particular room is hotter than I want it to be. The push notifications work very well, but I was wondering if there was a way to have a delay of say...15 minutes between a particular notification? Right now I get them a few times a minute and it is quite annoying.

 

Thank you in advance for any info.

if TimerX is not running

   If Room is hotter than you want it to be 

      Fire timerX for 15mins
      Send Notification

Link to comment
Share on other sites

2 minutes ago, Andrew luecke said:

if TimerX is not running

   If Room is hotter than you want it to be 

      Fire timerX for 15mins
      Send Notification

Hmm. OK, I think I know what you mean. Thank you

Link to comment
Share on other sites

18 minutes ago, Andrew luecke said:

if TimerX is not running

   If Room is hotter than you want it to be 

      Fire timerX for 15mins
      Send Notification

OK...Apparently I had NO idea what you meant. Thank you anyway.

Link to comment
Share on other sites

5 hours ago, Cyknight said:

Just to be more detailed:

Create timer {15 minute hold} for 15 minutes

 

In  your existing programming, change it to:

 

WHEN temp changes
IF temp is above xyz
	IF timer {15 minute hold} is NOT running
		Send notification
		start timer {15 minute hold}

 

Excellent way to do this, but I'd consider addition to minimize the emails further.

Because temperatures with HVAC fluctuate especially when going on/off - you'll probably see that first email (and don't really  care).

I'd  reset the time timer first and have the notification sent when the timer FINISHES.

I would also add a line When temp changes -> if temp is BELOW xyz -> Stop timer.

 

 

Link to comment
Share on other sites

6 hours ago, Cyknight said:

Just to be more detailed:

Create timer {15 minute hold} for 15 minutes

 

In  your existing programming, change it to:

 

WHEN temp changes
IF temp is above xyz
	IF timer {15 minute hold} is NOT running
		Send notification
		start timer {15 minute hold}

 

OK, That makes a bit more sense to me. I will give that a shot. THANK YOU !!!

Link to comment
Share on other sites

On 8/12/2022 at 5:14 AM, ekohn00 said:

I'd  reset the time timer first and have the notification sent when the timer FINISHES.

So that you get a notification of a strange change in temperature 15 minutes later?

I get what you're saying, but having it trigger on reaching a set temperature or above already would already stop 'random' notification when a forced air kicks in and temperature drops/spike briefly by a degree or two

 

Link to comment
Share on other sites

1 hour ago, Cyknight said:

So that you get a notification of a strange change in temperature 15 minutes later?

I get what you're saying, but having it trigger on reaching a set temperature or above already would already stop 'random' notification when a forced air kicks in and temperature drops/spike briefly by a degree or two

 

No so you minimize the false positive.

 

Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.