-
Posts
4589 -
Joined
-
Last visited
Everything posted by Xathros
-
I believe they are just changing the character encoding to avoid issues with mail gateways. -Xathros Sent from my iPhone using Tapatalk
-
Glad I could help. Enjoy! -Xathros
-
Ahh. Gotcha. So as long as you remember to lockout the remotes, then an All On won't hit your doors. -Xathros
-
Should be: ${sys.node.29 25 2C 1.ST} -Xathros
-
It seems to me like this would still suffer from an All On if one were to happen on your network. What difference does it make with the IOLinc is connected directly to the opener or to a remote? If the IOLink relay closes unexpectedly, won't the door still actuate? -Xathros
-
Yes. As long as your not sending this to an AT&T MMS address you should be fine. There is a recently discovered issue with the formatting of the degree symbol that the AT&T gateway does not like. UDI says this is fixed in the next firmware version. That custom notification was left over from my testing that issue and was not one I actually use otherwise the subject would have been more useful. -Xathros
-
Here is the program to monitor the Stat: If Status 'Thermostats / LR Thermostat - Main' <= 122° (Temperature) Then Send Notification to 'Xathros Email' content 'Send Temp' Else - No Actions - (To add one, press 'Action') The above program will trigger anytime the status of the Main stat node changes. Then the custom notification: Where 11 B2 7 is the insteon address of the Stat. Note if any of the 3 address digits contains a leading 0, drop the 0. In my example, the address is: 11.B7.07 which becomes 11 B7 7 Hope this helps. -Xathros
-
Temp from a TStat or from the Climate data received from HAMWeather? -Xathros
-
You are missing Parens: If ( Status 'Main House / Master Bath / Main: MBath Toilet Light' is not Off Or Status 'Main House / Master Bath / Main: Mbath Shower' is not Off Or Status 'Main House / Master Bath / Main: MBath Keypad' is not Off ) And Control 'Leak - Motion - Trigger - Spr / Main: Trigger Drive-Opened' is switched On Then Run Program 'Driveway Alarm Master Bath' (Then Path) Else - No Actions - (To add one, press 'Action') Without the parens, the AND is only joining with the line above not the 3 lines above. This makes the program trigger if either of the first 2 devices turn off regardless of the Control message from the last device. What you were saying there is: If the toilet light is not off or If the Shower light is not off or If the keypad is not off and Drive-Open switched On Then run the next program - the next program will re-trigger this since it turns on toilet and shower lights. -Xathros
-
Thanks for the compliment and the comments. I have considered this and I can easily add some more code to suspend the resets for a few hours after a few cycles but so far this has not been a problem for me. My connection is quite stable. We have had one extended outtage in the last few years and during that, I manually disabled my test program. Of course, I was home at the time. Had I been away, this would have resulted in the modem being rebooted numerous times. -Xathros
-
Then it sounds to me like its a hardware problem. if its only the A button, its likely just a bad tact switch under that button. -Xathros Sent from my iPhone using Tapatalk
-
With one note, a program with no conditions does not need to be disabled as it cannot self trigger with no conditions. Disabling makes not difference in this case. -Xathros
-
Does the "A" button turn on but not off by chance? Is there a load connected to the KPL's red wire? If so, what kind of load it is? -Xathros
-
Are you tapping the Off paddle in Mobilinc or Touching and holding for a moment? It's possible you are issuing a Fade down rather than an Off. Instead of using the graphic paddle for a device, try clicking the Config gear for THE SCENE (not an individual device) and select Off. Does that work as expected? -Xathros
-
Don't need to but if you want to, remove it from the ISY and add it back using the drop down to specify and 8 button KPL rather than using auto discover. -Xathros
-
I suspect that you used Auto Discover for the device type with this one and specified the type as 8 button KPLs when adding the others. Only issue is how the ISY describes the device. It should work just fine as is. -Xathros
-
Unless your computer is providing DHCP services then no, you will need to set the ISY's network configuration to something compatible ahead of time. I recommend using settings that will work when connected to your regular network this way to don't have to reset things to get it working again when switching back to your network. If you don't intend on having the ISY on the regular network then this does not matter as much. -Xathros
-
While I have not yet fully analyzed your code above, I highly suspect that these are all running at the same time and causing an insteon flood. This is why I said it should be done with a single large scene with all necessary locations included. The problem currently is tracing the state of each location and restoring that state after the flash happens. With V5 we should be able to store the state of specific devices in variables then restore from the variables after the flash all in one program with once big scene. -Xathros
-
This gets more complicated. You could use one scene with all desired lights as responders but then determining whether to leave the scene on or off will be a problem with multiple rooms involved. I could write a series of programs to store the state of each area to variables then flash a big scene then even more programs to restore each room afterward. Not sure its worth the effort. With the b5 series firmware this will be much easier. Might be best to wait for that. -Xathros Sent from my iPhone using Tapatalk
-
Actually yes. I do that for my internet access test. -Xathros Sent from my iPhone using Tapatalk
-
Another option would be to plug the PLM into an extension cord and then the cord into an outlet that is on the same circuit as the Switchlinc. Try to add the Switchlinc then put the PLM back after a successful link has been established. -Xathros
-
Currently we are unable to modify user codes under program control. It can be done via /REST interface calls. Here is how: http://forum.universal-devices.com/topic/15258-door-lock-syncing/?do=findComment&comment=130600 -Xathros
-
Yes it is quite doable. You will either ned a crossover cable between the computer and ISY or a switch and two standard ethernet cables. In either case, both the ISY and the computer will need to be configured with appropriate Static IP addresses since there will be no DHCP server available in this configuration to provide addresses for either the computer or the ISY. Example: Computer Static IP: 192.168.1.2 with Netmask 255.255.255.0 - no gateway necessary. ISY Static IP: 192.168.1.3 with Netmask 255.255.255.0 - no Gateway necessary. Hope this helps. -Xathros
-
I believe ZWave in scenes is still in development and we may see better scene support for ZWave devices in the V5.x firmwares. That said, what is it you are trying to accomplish by placing a lock in a scene? I suspect you will need a program to accomplish your goal. -Xathros
-
No sir. All devices can be responder only if so desired. The ISY's PLM is actually a controller but you don't see that in the device list. Hope that helps. -Xathros