
TJF1960
Members-
Posts
1800 -
Joined
-
Last visited
Everything posted by TJF1960
-
Skripo, As far as your last question is concerned, not sure if this will help you or not but I have my front porch lights flash twice when the home alarm is armed. I use a variable to track whether the lights were on or off. Based on the state of the variable one of 2 programs runs. I didn’t use the repeat but you can modify as you see fit. The$iFront_PorchLites_On variable is an integer so it will not trigger the program when it changes state so the only trigger is the “Alarm is Armed." This program will run if the lights are currently off when the alarm is armed. If $iFront_PorchLites_On is 0 And 'Alarm is armed’ Then Wait 1 second Set Scene 'Scenes / Front Yard / Frnt Porch Lites' On Wait 0 seconds Set Scene 'Scenes / Front Yard / Frnt Porch Lites' Off Wait 0 seconds Set Scene 'Scenes / Front Yard / Frnt Porch Lites' On Wait 1 second Set Scene 'Scenes / Front Yard / Frnt Porch Lites' Off Else - No Actions - (To add one, press 'Action') This next program is similar to the first but will only trigger when the lights are currently On when the alarm is armed. If $iFront_PorchLites_On is 1 And control ‘Alarm is Armed’ Then Wait 1 second Set Scene 'Scenes / Front Yard / Frnt Porch Lites' Off Wait 0 seconds Set Scene 'Scenes / Front Yard / Frnt Porch Lites' On Wait 0 seconds Set Scene 'Scenes / Front Yard / Frnt Porch Lites' Off Wait 1 second Set Scene 'Scenes / Front Yard / Frnt Porch Lites' On Else - No Actions - (To add one, press 'Action') Tim
-
I am thinking that every time the module climate temp changes the program is re-evaluated so if the temp is within range at 2pm, 9am, 3am or 7am then the program will evaluate true and turn on the hot tub. But if during the waiting period the temp changes again and it is not at those exact times the program will evaluate false and leave the tub on. The easiest way to fix it would probably be another program that contains the "then" of this program, while this program just calls the other into action: If Module 'Climate' Temperature < 36 °F And Module 'Climate' Temperature >= 27 °F And ( Time is 2:00:00PM Or Time is 9:00:00PM Or Time is 3:00:00AM Or Time is 7:00:00AM ) Then Run New Program Timer "Then" Else nothing New Program Timer: If nothing Then Set 'Hot Tub - Outdoors' On Wait 1 hour Set 'Hot Tub - Outdoors' Off Else nothing Tim
-
Perhaps in # 3 change "Status" to "Control" switched on and get rid of the "Else" condition. I think for # 5 all of the devices in the If section should be "Or" instead of "And" Tim
-
I am so sorry. Thats what happens when I try to post in a hurry.... This should work If Control 'Garage Interior / Motion-Sensor' is switched On And Status 'Garage Interior / Garage Interior Lights' is On And Program 'Lights Manual On' is False Then Wait 15 minutes Set 'Garage Interior / Garage Interior Lights' Off Else - No Actions - (To add one, press 'Action')
-
You should be able to put the ms into occupancy mode (I don't remember the exact term used in the options menu) which will send an On command everytime it senses motion. Then a standard program such as: Program: Lite Auto Off If Status 'Motion Sensor' is Off and Status Switchlinc is On and Program 'Manual Lite On' is False Then Wait 15 minutes Set Switchlinc Off Else Nothing If the light is on and the ms sends an On signal the wait will start over. The light will turn off 15 minutes after the last On signal, unless the next program is true. Program Manual Lite On If Control 'Switchlinc is switched On and Control 'Switchlinc is not switched Off Then Else When you manually turn the light on, you will have to remember to manually turn it off. Or another program with a longer wait time could be used to automatically turn it off. Tim
-
On programs that may be running or need to run after a reboot I have a program which is enabled to run at startup. That program is called Reboot Email. When the ISY reboots that program will run and send me an email. If - No Conditions - (To add one, press 'Schedule' or 'Condition') Then Set Program 'Reboot Email' To Run At Startup Wait 30 seconds Send Notification to 'To Me' Wait 30 seconds Run Program 'Reboot Email' (Else Path) Else - No Actions - (To add one, press 'Action') Then the program waits 30 seconds then turns false. I then insert that program into the conditions of any programs needing to evaluate and run such as: If Program 'Reboot Email' is False And From 3:20:00PM To 6:20:00PM (same day) Then Set 'Devices / Gar Main Lite' On Else - No Actions - (To add one, press 'Action') This program becomes the trigger when the ISY reboots and triggers the program into action if the schedule is correct. During normal daily operation the schedule is the trigger because the program is always false – unless the ISY is rebooting. As far as programs you want to run to catch up, you can check the “Catch up schedules at Restart†button. The thing you have to be careful about with that is there may be some programs you do not want to catch up on…like a coffee maker program or electric blanket schedule for the bed etc. so personally speaking for myself, that is why I unchecked “Catch up schedules at Restart†and started using the Reboot Email program as a trigger. Tim
-
Hello Joe, Along with Lee's comments I might add that after a reboot the ISY sets programs either true or false based on their conditions, it doesn't actually run the programs so the Then and Else do not execute. In order for the program to run you either need some kind of trigger in the program that will make it run after reboot or set the program to Run at startup. If you have a lot of programs that require running after reboot you might consider using a trigger as it will probably be easier on you as well as the ISY. Tim
-
I just read this post about a bug in Java 1.7, Michel warns about 1.7 in the last post. http://forum.universal-devices.com/viewtopic.php?f=27&t=7885&p=59962&hilit=java#p59962 Hopefully that is the problem.... Tim
-
Hi wrj0, Thanks for the reply. The stations I have been tapped into for the last couple of years have always offered all rain and wind data (at least for the last 2 or so years), pretty much everything except for light data. It has just been this last week that I have noticed no rain data from all of the stations in and around my area. We haven't had rain for 2+ months so this is the first real rainfall since Nov. Thanks, Tim
-
Like JMC I also subscribe to KBAB and KLHM and the rain data has disappeared. So I started checking other sites. I checked all sites within 36 miles, none had rain data. 76 miles away at truckee was the first site I came to that has some rain data which showed up in ISY. So its not a problem with ISY, it appears it is a weatherbug thing, but what could be the reason? Any ideas or suggestions? Thanks, Tim
-
Michel, I noticed in the network resources that when you press the bar to re-order the list of resources that you lose the ability to Test any resources. Pressing Reload will then allow for testing. It is only after re-ordering that the Test function quits. Thanks, Tim 3.1.17
-
Hi Michel, I finally figured out the config. for adding gmail to ISY and it does work perfectly using From* for emails. I wont be able to test the text messages till tomorrow. If there is a problem I will report. Thanks very much, Tim
-
kevkmartin, So if the garage door open is plugged into the SL then you only open and close the garage door via ISY? Or are you saying that the I/O Linc is plugged int the SL and the garage door opener is powered all the time so your wall mounted opener switch and car remote door openers work as usual? wrj0, Thanks for verifing its not a local problem just with me. Thanks, Tim
-
Hi Michel, It has always been blank. With the email address only or :my_email_address works fine, anything ahead of the ":" breaks it. Thanks, Tim
-
Hi Michel, Thanks, but that didn't work either (just the first test after saving produced an email). Tim
-
Hi Michel, Setting first name last name as it is set up in Outlook yields the same results. First time test after saving always sends email, no more after that. However text messages never send, first time after saving or not. Thanks, Tim
-
Hi Michel, So far everything I have tested has worked perfectly except for the new "Send user friendly From (last name/first name) in Notifications." It only worked only for the first email sent. Test button presses after the first press resulted in Mail Server Failure [from timed out]. I increased the timeout to 2 seconds, again the test button worked only one time, after that the same error occured. Turns out any time the Save button is pressed to save any changes, the test button will work only 1 time then the errors start. Confirmed the 1 test email was sent and received. Text message test resulted in no text message sent and no error on the first test button press, any test after the first did result in error message and no text sent. Results were the same from running a program, after a smtp save a program would send an email only once. Just to make sure I have the SMTP settings proper: SMTP Server: smtp.comcast.net User id: myemailaddress@comcast.net From: My House:myemailaddress@comcast.net SMTP Port: 587 Password: XXXXX Timeout: 1,000ms Is this an issue with comcast? I have not had any issues with text or emailing before or after the upgrade to 3.1.17 and if I delete "From" my text and emails go back to working fine. As a side note, it is nice to see an email come in with my own customized name instead of just by ho hum email address! Thanks, Tim
-
Hello Traditore, Under the schedule section, under the pull down button that says "Time Is" is a check box that says "Daily." Un-Check that box and the calendar will appear. Tim
-
Hi Lee, Sorry, I do not follow. The program is not being reevaluated when the value of the variable changes. The program will only turn true when the status of the device is On and turn false when the status of the device is Off. Tim
-
Hi Andy, Yes you could. But I found the variable increments +1 immediately each time the program turns true, then it starts the 1 minute repeat routine. Since the OP is trying to track operation time I thought the premature increment by 1 might throw his stats off. However if there are times when the status of his device will be turned on for less than 1 minute at a time then the program I listed will not track those moments in which case the OP might prefer to delete the wait as you suggested. Tim
-
Hi jpoje, The hihats will always turn on since they are the load connected to the Icon switch. You could do a program such as: If Control 'Icon Switch' is Switched Fast Off Then Wait 2 seconds Set Appliancelinc On Else You will have to put a wait in before turning on the appliancelinc since the device is linked to the Icon and in effect when you Fast Off the switch you are turning the appliancelinc off as well, so the wait will have to be long enough for the comm. to stop from the Off command. Tim
-
Hello telljcl, This may do what you are looking for. Set up a variable and include it in the program below. Every 1 minute the device is On the variable will increase by 1. If Status 'Your Device' is On Then Repeat Every 0 seconds Wait 1 minute $Your var. name += 1 Else - No Actions - (To add one, press 'Action') Tim
-
That is strange...after factory resetting the SL did you run a restore in the ISY for that device? Do you have two access points set up on opposite legs(I know you must have at least 1 or a dual band plm in order for the MS signals to be received)? I personally believe (based on my observations in my home) that a phase coupler mounted at the service panel is a great idea. But there are many here who do not have one and have great success without one. Tim
-
oberkc, Sorry you beat me to it.... Tim
-
Hello poormonkey, I assume from your post and program example that the ms is not directly linked to the kitchen lights. I am also assuming the kitchen light or lights are powered by a Switchlinc or similar Insteon switching device. One way to disable the ms program you have listed is to create a new program which looks for the kitchen lights being turned of locally such as: Kitchen Lights Manual Off: If Control 'Kitchen Lights' is Switched Off Then Wait 5 minutes Run Program 'Kitchen Lights Manual Off' Else Else - No Actions - (To add one, press 'Action') So when you manually turn off the kitchen lights then program Kitchen Lights Manual Off turns true for 5 minutes then turns false. Next, in your example program add: If Control 'Motion Sensor-Sensor' is switched On And Status 'Kitchen' is Off And Program 'Kitchen Lights Manual Off' is False Then Set 'Kitchen' On Else - No Actions - (To add one, press 'Action') Now when you locally turn off the kitchen lights the first program turns true for 5 minutes which will prevent the second program from running as you pass by the ms on your way to bed. After 5 minutes the first program turns false which will allow the second program to run true when it is triggered by the ms. Tim