Jump 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.

MrBill

Members
  • Joined

  • Last visited

Everything posted by MrBill

  1. they even advertise that they replace hubs for free. They clone them before shipping too from info stored in the cloud. The replacement plugs in an just works. (My son has one and has been through the process), They also have new mobile apps for the hub, but I've not tried it. Also not tried, but Home Assistant claims to support Insteon via the hub or PLM.
  2. You'll also need to check the other end inside the heat pump. It's normal to hook up neither end with older thermostats, Common was never needed are rarely hooked up at the equipment end.
  3. You may have but you skipped the questions I asked entirely....
  4. If I were you... I'd make a test cord. You also need a wire nut to cap the red wire. Then plug the device into the same circuit as the PLM. (A cheap plug strip with NO Surge Protection is my method.) I suspect you don't have as many bad devices, instead you have communication problems. There is an entire sub-forum for Insteon Communication issues as well as several Wiki Sections. (Pic shamelessly stolen from a @Teken post elsewhere on this forum).
  5. Clear all of those boxes, there's likely alot of them piled on top of each other. then look that the device tree, the left window on the Main tab of the admin console and see what devices have RED ! (Exclamation points) next to them. Alternatively you can also check the Error log.
  6. MrBill replied to btreinders's topic in UD Portal
    open a ticket. include the error log. support@universal-devices.com
  7. Clear the java cache. If you're using Windows install The ISY Launcher. The ISY Launcher is a new method of starting the admin console that always matches the firmware and admin console versions for you. The first time you click the link it will install a desktop icon thereafter, you will use that icon to start the admin console.
  8. MrBill replied to btreinders's topic in UD Portal
    you might want to check the ISY error log to see if there are any clues. You might also want to open a ticket: support@universal-devices.com so they can check your portal instance... not all of us run in the same virtual cloud space.
  9. What version of Java? recent Java install or old java install? Windows or mac? Did the installed java come from the offical Java website https://java.com/en/ or someplace else?
  10. Glad you found it! I'd recommend installing 5.3.4... it hasn't shown any instability.
  11. I second this... Upgrades from v4 to V5 go pretty smoothly now-a-days, especially if it's all Insteon and no z-wave. The biggest CAVEAT is that if you have programs that use the function "Adjust Scene" they will NOT automatically convert and those programs will need to be fixed manually. In addition to making an ISY backup before you start I would also make a TEXT backup of your programs for reference. Open the admin console and click "My Programs" at the top of the tree, then right click it. Select "Copy Folder to Clipboard". Now open any text editor that won't add formatting... good old fashioned windows Notepad is a great choice... click into the empty window and type Ctrl-V (paste) and then File > Save as. After update if you need to "Fix" any programs, you can use this as a reference to see exactly what it looked like. How to find those programs that need a Fix? After update, go to the Programs > Summary tab... Look for the color yellow... any program that didn't convert right will be flagged. After you open the program the cryptic GREEN text is a comment left behind by the upgrade process... it will be harder to read than the Text backup you made in the paragraph before this one, so refer to that backup to put your program back the way it was before.... and yes you can delete the green text comments.
  12. How fast is the light cycling on/off? Open the event viewer and set level 3? do you see the on/off cycle there? Also open the Programs Tab > Summary Tab and click the Activity Column header to sort by that column, review what programs are running. Also, I doubt it has any effect on the stated issue, but why did you pick 5.3.2? why not 5.3.4?
  13. I hope we will be able to restore a backup, then restore modem, so that we can convert to a USB modem.
  14. I don't know what @larryllix means, but if it's going thru the portal, no the google home voice command runs the ISY program. That's why I asked...
  15. Disabling a program only disables the "sensing aspects" of the IF statement. Disabled programs will still run if called by another program or if run at startup. (the run at startup program doesn't really need to be disabled either since the If body is blank). It will wait until the next time a temp change is detected. or you could add this: Program AC_Off_Thermostat If temp < 75 then Disable Program AC_On_Thermostat <--I just reversed these two. (this order is better for the original program) set AC Off <-- I Just reversed these two. (they should have been in this order originally) Wait 5 minutes enable Program AC_On_Thermostat Run Program AC_On_Thermostat (If) <-- Force immediate detection
  16. Program AC_Off_Thermostat If temp < 75 then Set AC off Disable Program AC_On_Thermostat Wait 5 minutes enable Program AC_On_Thermostat ---------------------------------- Program AC_On_Thermostat If temp > 77 then set AC On ---------------------------------- Program AC_Reset (Disabled) (Run at startup) If (none) then Wait 5 min enable Program AC_On_Thermostat
  17. I read that thread differently than you do... I don't see where it says Restore from ISY-994 installations works correctly... I see where it says a sub-item of "Case Sensitivity issues:" was "Backup/Restore" items. That's different than the traffic light turning Green.
  18. That's really weird.. and both the old and new spokens run the same program?
  19. Was it a change to a scene or program? If program, does the program work when you right click the name and select Run Then or Run Else?
  20. In case you'd like a faster answer than you'll get from Michel on Saturday... ISY on Polisy isn't ready for production use yet. Its available in ALPHA form for testing and bug reporting. There isn't a Z-wave interface yet. There are still many bugs being reported. I don't know for sure, but I don't think restore from backup works yet. The documentation you asked about in your first sentence doesn't exist yet, and so far I don't think it's even been tested on large scale as yet.
  21. Oh Ok, So there's no reason for anyone to consider any options other than the one that you insist that they use, and other suggestions are inherently wrong becuase you don't like using them! got it.
  22. That's what i was thinking... exposing more options.... I also don't think using resource intensive state variables is wise for things that rarely change... like vacation and christmas.
  23. For vacation and Christmas things I use Folder Conditions. It doesn't create much load when the state is infrequently changed. On the other hand if many programs contain the condition $sVacation or $sOccupied. they all have to run when the value changes, and they all have to be evaluated whenever the IF is evaluated. There is a THIRD way! Also available is to create a program to enable/disable a list of other programs. IF $sVacation is 1 then Enable Program 'Living room light timer' Enable Program 'Bedside light timer' Enable Program 'Outside timer' etc..... else Disable Program 'Living room light timer' Disable Program 'Bedside light timer' Disable Program 'Outside timer' etc....
  24. MrBill replied to xab's topic in UD Portal
    in addition to @Geddy's questions... This portion of the error message looks like an Insteon address: 51 7F B8 What device is it? The easy way to find it if you have alot of addresses to to click the root level of the device tree and then on the table on the right side of the screen click the Address column to sort the table by that column, then scroll down.
  25. It does still appear to be an issue, I just tried. Has anyone opened a ticket on this topic? If not, I may I have an out of town event later in the year where I will only be taking an iPad.

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.