[SOLVED] Emails Notifications Repeating

lol im confused… the code is there for anyone who needs it :stuck_out_tongue:

also the last post I made actually fixes the 59.9-60.0 bug :wink:

1 Like

Forget it Jamin, it was my mistake, I was thinking that @Costas made the code.
I just wondering that the programming skills of fihtraveler are not so high and when you give him the timed solution he don’t have very clear what that solution do…
In every case, this post is marked as [solved] so I hope he hit the nail.

1 Like

Thank you all. I’ve ran tests and everything is working great. I used the the code posted by Jamin:

if (t >= 60 && notified == 0){ // check to see if flag is also set
  notified = 1; 
  Blynk.email("************@**************", "ALARM", "Temp is above 60F");
} else if(t < 58){ // set lower than 60... to stop the 59.9-60.0 bouncing. 
  notified = 0;
}
1 Like

A post was split to a new topic: Question about virtualWrites in timer and not main loop