Routine Status E Mails

pjgriffin

New member
I am just starting programming the AQ3 Pro and since I travel a lot I want to have a routine daily status e-mail sent to me. I found a previous posting that included the instructions so I am using:

If Time > 00:00 Then FIL ON
If Time > 00:00 Then ALM OFF
If Time > 11:15 Then ALM ON
If Time > 11:20 Then ALM OFF
If Temp < 80.0 Then HET ON
If Temp < 78.0 Then ALM ON

This program generates an e-mail sent to me on the first day of implementation at 11.50-11.20. However on subsequent days I do not recieve an e-mail and Aquanotes does not log any alarm events.

If I change the program to a new time setting the e-mail/alarm condition works again but only for one day. I suspect I am missing something obvious but....help appreciated
 
That code should work. Can you send more than 1 test email? What is the version and date of the firmware in the controller?

Curt
 
What is the re-email delay? Your code actually has a redundate statement for the alarm. It could be written more concisely as:

If Time > 11:15 Then ALM ON
If Time > 11:20 Then ALM OFF
If Temp < 78.0 Then ALM ON

But I don't think that is causing the problem.

Curt
 
I will wait until 11.30 today. If I do not get an e-mail I will modify the code as suggested and any other suggestions that you may have and will wait two days to see the outcome.

Thanks
 
Back
Top