-
Posts
167 -
Joined
-
Last visited
Everything posted by atmarosi
-
Can't say I've worked with the remote before - but you'll need to figure out how build the API call with the token/auth; someone built something similar for HomeAssistant:
-
You would want to send REST API calls from the Sofabaton to the UD side: ISY Developers:API:REST Interface - Universal Devices, Inc. Wiki Wiki has a great write up on how to use the REST API it has available.
-
You could have the program capture/write out the current level in a variable; turn them off; then turn them back on via the stored state - can't say I would know how to write it but sounds do-able...
-
If you turn off/on the light does it go back to it's prior setting right now? If so it should do the same thing if you off/on the lights via a program.
-
According to the python library that the PG node uses - this model + FW combo you have (HS200 HW 5.26/FW 1.0.3) requires auth.... You may need to do something extra in the config of the device/node server to get it to talk to it...seems like this post has mentioned a beta version that might fix it:
-
Here is an idea: https://www.reddit.com/r/Soundbars/s/ynm3ScQKwZ
-
What about like this? Open the Apple TV Go to Settings Remotes and Devices Control TVs and Receivers Click it to turn it off
-
Can’t you turn off CEC in the Apple tv?
-
I would try turning off any stateful inspection you might have for the EISY via the PAN (Palo Alto). We're a PAN shop at work - and I know it will scrutinize traffic very much and sometimes tooo much. Since it's is unable to reach the internet it likely doesn't send the traffic out to the portal (guessing). So that would explain why when it's unable to ping the internet it stops trying to connect to the portal and not showing any traffic as well. Since you can't reach the internet from the EISY - it obviously won't reach the UD Portal. Assuming you don't have similar issues with other devices on the network I would see how the traffic is any different - different rules? Different path? etc. I'm leaning towards the PAN getting in the way....
-
Maybe ssh into said eisy and run a ping out to the UD portal and see if maybe the path that it’s taking is troubled? Is the eisy connected to a different switch maybe or AP than your phone or other things?
-
https://shop.insteon.com/products/led-flicker-glow-eliminator?srsltid=AfmBOopOitXjjLRMMOtmR6bSOykiQ4h5NGuyzQY4OngE1IH9zowHPqHB try these
-
Instructions seem to be using the same reset button: Further I don't see any mention of any other orifice:
-
Are you still on a ISY994? Resetting Your ISY - Universal Devices, Inc. Wiki As long as you don't hit the 30second factory reset I don't see how you would...
-
Check this? https://wiki.universal-devices.com/index.php?title=ISY-99i/ISY-26_INSTEON:Resetting_Your_Userid/Password
-
Wired Polisy here. Upgrade went without issue. Took about 20 minutes.
-
I would monitor the ping to the IR device and see if it’s not happy with the new WiFi. If that shows signs of 100% reliability then look at the way the IoX device is reaching the device and see if you can setup a monitor by running a query to the global cache NS maybe and put a THEN to notify you of its failure? Might be able to use that to troubleshoot the WiFi link to the IR device.
-
Wish I had something to suggest. If no one else does there is always a ticket with UDI.
-
Tried a reboot of the EISY yet? 🤞
-
First for everything. Nice
-
That should match the number of fans you have…. Seems like you need to retry pairing the fan units to the bond first
-
Under advanced it’ll show “Devices Associated” - is that actually showing all the devices? What kind of Bond hub is it?
-
In the bond app click on the bond pro under my bonds: see IMG910 At the bottom hit advanced: see IMG913 local token should be the second field: see IMG912
-
That worked!!!! Not sure why I didn't think of that! Appreciate it!
-
Found a work around in the mean time; Home Assitant + Wemo Relay Devices (Digital Loggers allows their relays to show up as a Wemo device). I can setup the necessary automations in HA until i figure it out further with Network Resources.
-
Did some searching but couldn't find anything of the sort - so here we are... Got a Digital Logger's DIN Relay 4, trying to leverage Network Resources to trigger REST API call on said DIN Relay 4. Using Curl on test box on the same network I'm able to have a relay fire, but can't figure out how to chop up the curl command into something for Network Resources to consume...Any ideas? Working curl: curl --digest -u admin:admin -X PUT -H "X-CSRF: x" --data "value=true" "http://10.10.10.10/restapi/relay/outlets/2/state/" Thanks in advanced!