Everything posted by Xathros
-
Connecting to ISY options
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
-
How do I set program priority when multiple programs exist?
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
-
How do I set program priority when multiple programs exist?
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
-
Incorrect set of actions show for a z-wave device in a scene
Actually yes. I do that for my internet access test. -Xathros Sent from my iPhone using Tapatalk
-
Can't link ISY994 to 2477D
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
-
Incorrect set of actions show for a z-wave device in a scene
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
-
Connecting to ISY options
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
-
Incorrect set of actions show for a z-wave device in a scene
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
-
Can a program activate a scene?
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
-
Popularity of Zwave module, should my app support?
Good to hear. I for one would encourage you to push ahead with ZWave support. There are a great many ZWave devices now and even more coming to market. Once the new ISY firmware ships with multi channel ZWave support, there will be lots of people looking for support for their pool/spa controllers, multi outlet power strips, LED lightstrip controllers etc. Your app looks to be a real winner now and if it gains full ZWave support along with the ISY, they will become an unbeatable combo in my opinion. -Xathros
-
ISY 994i/IR PRO version 4.2.18
Anytime. Glad I could help. -Xathros
-
ability to run a program before shutdown/reboot
Why wait to store your critical vars. sny that I need saved, i copy to init with every change. That way I'm covered for any power fail or reboot. . -Xathros Sent from my iPhone using Tapatalk
-
ISY 994i/IR PRO version 4.2.18
Contrary to what the popup window says, i would reboot the ISY and see if that helps. -Xathros Sent from my iPhone using Tapatalk
-
Why do i get both unlock and lock notifications?
Thanks. I already had that document a while back. Couldn't find anything like it for the 599 however. -Xathros
-
Old Console? No TLS Settings
Joe- The TLS settings are found in the Dashboard, not the admin console. You can download the Dashboard.jnlp from the announcement post for your firmware level. 4.2.18 is an older console. 4.2.23 is current. I do recomment moving to the current firmware, console and dashboard versions. -Xathros PS: just looked over your website and App. Nice work. I see this on my wall in the not too distant future. Keep up the excellent work!
-
Why do i get both unlock and lock notifications?
I can't say for sure but my gut says that the lock itself is the weak link here. The 599 in particular bugs me in that it can't be remotely unlocked for more than a few seconds yet there is a button on the lockset that will unlock the lock until it's told otherwise. Seems to me like Schlage never finished the ZWave interface on this one. -Xathros
-
Why do i get both unlock and lock notifications?
Looks like only user access codes are represented in the "Control" list. Lock and Unlock are Status only events. -Xathros
-
Why do i get both unlock and lock notifications?
You could break your program into two separate programs, one for each lock. That would also solve the problem. -Xathros Sent from my iPhone using Tapatalk
-
Why do i get both unlock and lock notifications?
I'll have a look at what is available on my 599s when I get home and report back. My memory says I'm using control for some of mine but won't know for sure till I look. -Xathros Sent from my iPhone using Tapatalk
-
Why do i get both unlock and lock notifications?
The if is evaluated any time either status changes. The FE599 when unlocked remotely will automatically relock after a few seconds changing it's status and forcing your if to reevaluate. This may be where the extra unexpected notification is coming from. You could change "Status" to "Control" and get the result you want. -Xathros Sent from my iPhone using Tapatalk
-
SMTP Settings
Sorry. I have learned from doing over many years. While I'm sure there are resources out there to learn from, I don't know where to point you. -Xathros Sent from my iPhone using Tapatalk
-
Popularity of Zwave module, should my app support?
Thats how I read it. -Xathros
-
SMTP Settings
Excellent! Glad you got it going. -Xathros
-
SMTP Settings
Try port 587 and check the Use TLS box. -Xathros
-
Program for 2 motion sensors
Or, you could narrow this down to one program: Motion On Master Bath Motion On - [ID 0023][Parent 0025] If Control 'System Devices / Master Bedroom and Bath / Motion Sensor-Sensor' is switched On Or Control 'System Devices / Master Bedroom and Bath / Z-Wave Shower Motion Sensor' is switched On Then Set Scene 'Scenes / Master Bathroom and Shower' On Wait 2 minutes Set Scene 'Scenes / Master Bathroom and Shower' Off Else - No Actions - (To add one, press 'Action') In this program, the wait restarts with each new Motion On received and will timeout and turn off the lights after 2 minutes with no motion detected. Hope this helps. -Xathros