Skip to content
View in the app

A better way to browse. Learn more.

Universal Devices Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

paulbates

Members
  • Joined

  • Last visited

Everything posted by paulbates

  1. How old are the insteon device with the problems? How old is the plm? The humming and buzzing (and other problems) with akeypads was an issue I had with a number of my keypads around 2011 I think. There was a problem with a production run of them and insteon replaced all of mine from that run. The those keypads were sold with my house last summer, working fine. I've moved into the i3 switches at my new to me house and I and wife really like them. If most of your insteon works if stick with it. If you're going to replace it all, factor that cost in along with the learning curve and controllers for the new technology you'd pick
  2. This should give you a guide for wiring
  3. In many cases a failing PLM will act the way it does because the link table data is bad. What the ISY does is keep the master copy of links in a file as you add devices and scenes. Sometimes when PLMs fail the links table in the PLM becomes corrupt and/or incomplete. This is a link to an older manual, but the procedure is the same. Go to page 60 to 3.10.3 and forward and follow those steps. This type of failure usually comes with older PLMs, but its a place to start and something to eliminate as a cause.
  4. paulbates replied to kurelgyer's topic in ZMatter
    Re-iterating what was said: Homeseer, Insteon, UDI and yes, Home Assistant, as comparatively smaller integrators, aren't fully there yet. None of them have a "we'll be ready here" date. Matter/Thread require significant resources for smaller integrators to complete the work, compared to Apple, google, Amazon. From Home Assistant's current Matter web page: "Realize that you are an early adopter, both on the hardware side and on the software (controller) side so you may run into compatibility issues or features that are still missing. Report any issues you may find and help out others if you find a workaround or tested a device." All due credit to Home Assistant's advanced state of integration, they are not saying "we're there". There's not a date. They are the lead horse in the race. Not all integration companies have the necessary resources to deliver the Matter plumbing .You've chosen an early adopter standard above automating functions in your house and will need the patience to see it through.. or make the necessary platform choices based on the direction you want to go.
  5. I use a doorbell camera. A suggestion is to write an iox program that detects the motion. Then let it call a second program to turn the light on, use a wait statement ,and then shut the light off. By detecting only "on", the effects of the light won't effect operation. Here's my first program that detects motion. It calls a second program that turns various lights on, waits (randomly) and shuts them off. The point is, once motion is detected, the second program runs regardless of the motion sensor going back off: Front Motion Detected-1 - [ID 0027][Parent 0002] If 'Lighting Premise / Front Door (Motion)' is switched Motion And From 9:30:00PM To Sunrise - 30 minutes (next day) And 'Lighting Premise / Seasonal Lights-Entry Closet' Status is Off Then Run Program 'Front Motion Detected-2' (Then Path) Else - No Actions - (To add one, press 'Action')
  6. When it's plugged in to an iPhone block charger, connected to light switches with a scene and backstopped with an iox program, it's working very well for me as an MS
  7. A couple of efficiency comments: My belief is that it would be better for the If to use Control instead of status. When you turn an Insteon device on or off, there are multiple message exchanges between the PLM and the device. I'm counting 14 separate devices being addressed in a row. The way the ISY works.... it doesn't wait between each of the on or off commands. So your Insteon network is flooded with traffic and the next on or off is colliding with the previous. Is individual device reliability a reason for repeating it 150 times? To be candid that is really extreme. Put the individual devices into one or more scenes (one should be fine), and turn that one scene on or off... One time.... no repeat statement. They'll all go on/off appropriately at the same time I know this approach is different than you're asking, but the chain of separate devices coupled with the loop 150 times is going to give you unreliable results.
  8. What is the house code / unit code... Not J is it? I would temporarily shift the house code to something else, and wait and see if it repeats. If it does not, modify your programs to the new house code
  9. Like @IndyMike, I want all my premise lights to on/off in unison and a certain actual dark level outside. Where I live in the US, dusk time is not a great program trigger as it could be very cloudy out (needs to come on sooner) or there's snow on the ground (lighter out and it needs to come on later). I made an Insteon, wired in dusk/dawn sensor. I put it in a small project box and its behind the drapes in a window inside my house that faces south and all that can be seen is a cable plugged in the wall coming from under the drape. It's not that big or noticeable. It can trigger Insteon devices anywhere Insteon reaches. It uses a micro on/off module and a lamp photocell sensor from amazon or home depot. See the post below. You can scroll around in the post to find out more. I also wanted to get away from battery powered sensors. IOX programs let me delay the trigger of the lights a little as the sensor turns them on too early, and I can avoid dark clouds, etc blowing over in the middle of the day triggering them
  10. Read here: My guess is the the plugin needs to login into the eISY, so use that login info. Here's the developer notes on the parameters for each host you want to WOL Custom Parameters": Key = Host Name Value = Mac Address (xx:xx:xx:xx:xx:xx) / IP Address For example: MyComputer = 10:0c:b9:8e:3a:24/192.168.1.12
  11. Sometimes things go astray in replacing a PLM I would try right-clicking on each of the 2 devices, one at a time, and select "Restore device" If that doesn't do it, delete and rebuild the scene.
  12. paulbates replied to Rocarico's topic in eisy
    You've just done it. Typically a community developer will already be an owner of the product. *Sometimes* community developers will consider creating a plug-in for something they don't own, if the appropriate hubs and devices are loaned and shipped to them for development; if you offered that that it might help. I saw that wiz supports Google home, Alexa, and IFTTT.. All three of those are supported by eisy... Google and Alexa via the isy portal, and IFTTT by a plug-in.
  13. Something else to know about "Switched on" in Insteon devices which is a factor too. "Switched on" messages are only sent to the PLM/ISY when you physically flip the switch at the device.... not when you turn it on with a program. "If Status" is the right way to go for this use case
  14. In your case status is probably more appropriate... the case being the power goes out when the pump is running and the ISY restarts. When the power comes back up, the smartenIT switch is likely still on, its last state, so it won't "switch on" and the program doesn't execute. Power is restored and it continues powering the pump. When the ISY restarts it interrogates every Insteon device for its state, and it will see that the pump is on, so "If Status" will be true. It won't "switch on" during that time and explains what you are seeing
  15. Me too, and PC is wifi connected. Can't remember the specifics, but after many days, certain things in the interface stop working and makes the windows "bling" sound. It is handy for tinkering. I "tinker" too, especially tuning programs with variables.. when something unexpected does (or doesn't) happen.. I go see all of the variables on one page, last change time, etc However, its not designed for that and to answer the OP, there's no setting to control that
  16. I don't believe there is a time out, per se. It's not designed to be left running, when you're done working, close it down. Having said that, I forgot to shut it down sometimes and it will run for days before I notice. But I try to remember to shut it down
  17. You need to clear java cache with all 3 boxes checked, then visit https://isy.universal-devices.com/start.jnlp and download the iox finder. At first execution of the java app, the icon (for that version of iox) is added to your desktop
  18. Me too. Now I cut the red wire on bad triacs in my spares pile to within the literal inch of its life, so only a small wire nut can go on it and even I can't connect it to something 😜🤣
  19. ISY Cookbook Scroll down to pg 120. Your programs have variables, so you've used them. Make a State variable call it Pool Cycle Counter, and then add this iox variable statement: $Pool_Cycle_Counter += 1 ... every time a cycle happens Use that variable, either to send that a notification, or take an action in an iox program If $Pool_Cycle_Counter = > (some hard integer number) Then Send notifications, shut things off, $Pool_Cycle_Counter = 0
  20. This one may not run after startup, it's a key control and should be set to "run at startup" so you know it's right. All of the programs that use a hard time of day: if those started, and then the ISY restarted from a power outage later, what happens (maybe that's where this began)? Based on how the ISY is set to "catch up" on programs when it restarts in the config tab, different things may, or may not happen. I think the randomness of power outage time will make this hard to be bullet proof. It's probably better to get a notification that the ISY restarted, have it shut everything off so you can manually intervene later and not accidentally over chlorinate the pool
  21. It would be the same approach as your other servers and Rpis. SSH in to the eisy, create python or other method to detect the UPS's mode and issue command line to shut it down. I google searched "shut down freebsd" and specific command line examples were returned.
  22. I suggest one of these approaches I described above: Maintaining variable state. Right now, when your isy restarts, they''re all being reset to 0. Every where you assign a value to a state variable in a "Then" or else, put an "Init to" statement right under itfor that variable for the same value so the ISY remembers when it resets. Have a program that you set under the programs tab to run at start up and make sure the valves are off (or whatever startup state should be). Different inston / smartenit devices can come back up in different states on a reset. You might have to bench test the program by unplugging the ISY. If you create a deadman program as I described in my first response, you'll want to set that to run at startup too Approach 1 can be a slippery slope and would need more validation testing. A final thought is to have the ISY run a program when it starts up to shut valves off and send you a notification, so it can't over-run and you can be aware and deal with it
  23. Without seeing your programs there's some guessing on my part. If power goes out, the pump loses power too (?) Variables that haven't been saved with "init to" statements in your iox programs will reset to 0 It will help to see the programs here
  24. You can replace similar Insteon devices with other Insteon devices, but not x10. However, the ISY does allow you do search across your programs, which I think is what you want Go to iox, click the programs tab. Right-click on the top level program folder and pick Find/Replace.
  25. 1) create a separate "dead man" switch program. If status pump is on wait xx minutes. (Something longer than it should run) Set pump off Send yourself a dead man program notification else 2) you can mark programs to run at startup. You may want a program that establishes startup conditions (pump off?) sends a notification, and has no "If" statements. Set it to run at startup

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.