Everything posted by drprm1
-
Programming question
Yes, the temperatures (as you know) come in as three digits and, in my case, are kept as state variables then turned into integer variables using a program like this If $sTemp_Backyard_ is $sTemp_Backyard_ Then $iTemp_Backyard = $sTemp_Backyard_ $iTemp_Backyard /= 10 Run Program 'Temp Backyard High Daily' (If) Run Program 'Temp Backyard Low Daily' (If) Run Program 'Temp Backyard High Weekly' (If) Run Program 'Temp Backyard Low Weekly' (If) Run Program 'Temp Backyard High Monthly' (If) Run Program 'Temp Backyard Low Monthly' (If) Else - No Actions - (To add one, press 'Action')
-
Programming question
I have a few 1-wire sensors run through an Autelis interface to export temperatures into ISY. So far i have only been using programs to push the data (temperatures) to me at certain times of the day, which it does perfectly. I would like for it to send me a notification when, for example, the temperature hits 100. I would think this simple program would do it but it wont... If $iTemp_Backyard >= 100 Then Wait 3 seconds Resource 'Current Temp' Else - No Actions - (To add one, press 'Action') I put >= 100 because Autelis is set to check temp every x minutes and I dont want it to maybe skip over the 100.. Thanks for the help
- Push varibles
-
Push varibles
Been using email notifications for some time. Recently started using push notifications using Prowl. Was wondering if there is a way to push the state of a variable? Thx!
- Program execution order question
-
Program execution order question
Suggestion on how to accomplish this issue would be most appreciated! ( Just got my Global Cache itach flex to work this past weekend and my brain is fried from dialing it in......)
-
Program execution order question
Trying to run the then statement at 9:15 am and 5:15 pm only if temp is above 34 and if there is less than .03" of rain for that day. Wanting to run (have relay on ) for 10 min at these times then turn off. Put the notification in only to see if complete.
-
Program execution order question
Is it something to do with maybe the climate data being re-evaluated during the wait period? I see where the last run/finish times are updated more frequently that my desired run times... If I run the then statement it sets the relay on for about a minute then sets it off and never completes the then statement..
-
Program execution order question
I'm not seeing why this never runs...I've tried many different ways...This is what I've been staring at recently. It doesn't run even though both climate expressions are true..? If ( Time is 9:15:00AM Or Time is 5:15:00PM ) And ( Module 'Climate' Temperature > 34 °F And Module 'Climate' Rain Today < 0.03 " ) Then Set 'Front Drip-Relay' On Wait 10 minutes Set 'Front Drip-Relay' Off Wait 3 seconds Send Notification to 'Patrick E-mail' content 'Front Drip Off' Else Set 'Front Drip-Relay' Off Thanks!
- Query all
- Query all
-
Multiple email notifications
You are right sir! The dreaded switch bounce was it. Much appreciated...
-
Multiple email notifications
Noticed that if I run the Then clause I only get one email notification
-
Multiple email notifications
Have had a program for many months which notified my by email if my garage was opening It's the only program I have a notification in: If Control 'Garage Door Sensor' is switched On Then Send Notification to 'Default' content 'Garage Door Opened' Else - No Actions - (To add one, press 'Action') Been working great till I decided to rename the program. Now it sends three consecutive emails of the same content when the sensor is switched On. Tried deleting the program and writing it again but no help. Looked through Event Viewer but couldn't identify the notifications being sent so its no help (to me).