-
Posts
1170 -
Joined
-
Last visited
Everything posted by dbwarner5
-
After upgrading to 15.2 I was having problems getting connected locally to the AC. Did all the usual steps: cleared Java, updated Java, redownloaded launcher from UDI, redownloaded local Admin from Eisy. But it would not connect, even after following Mac OS's new Security process for opening downloaded java files --> After trying to open the file, Mac will ask you to move it to the trash or cancel. Instead, go to system settings, Privacy and security and scroll down. After attempting to open it, you will see the file named and the option to open it. Click here and you will again get a warning dialogue that you can click thru to open Finally went to Java control panel under system settings and under the Temporary Internet Files / View, a new box opens up. Here I double clicked on IoX Launcher and I received a new Mac dialogue box asking if I want to give permission for local access. Clicked Yes, and all is working again. FYI for anyone else struggling as this may help.
- 1 reply
-
- 4
-
-
-
My Eisy uses the serial out to an ethernet which then runs ~50 to the basement from the second floor to the PLM. Works fine.
-
try typing this into a web browser... http://<LAN IP>:8080/admin.jnlp this should download a local copy of admin.jnlp which will link to the AC and will give you direct access to the sign in screen. Otherwise, try adding http://<LAN IP>:8080 to the UD Finder and see if it finds it locally.
-
I was able to get my camera feeds to work after a lot of trials.. but not Ring cameras. This is the path I finally used for local monitoring of my IP cameras, changing the last number in the hundreds digit. (201, 301, 401 etc) rtsp://<Username>:<Password>@192.168.68.101:554/Streaming/channels/301
-
Simple App For Family Members
dbwarner5 replied to scholarwarrior's topic in New user? Having trouble? Start here
Going back to the original question, you can set up Favorites in UDM and then LOCK edits. The favorites page you set up can be labeled however you want, with icons, colors and commands, so that a simple press, toggles a switch, program etc. Extremely powerful once you figure it out. This is what I do for my wife. Works well. -
I use an iPad mounted on the wall with UDM. Might be able to use a Fire tablet as well, but havent tried it.... would be much cheaper than an iPad.
-
Hmm. Strange. I would think that if they are in your heircachy then you should be able to use its status as a trigger.
-
Programming can always get around this. ie: zwave switch initiates a program that turns the rest of the scene on / off.
-
Trying to implement Z-Wave on my EISY - can't find instructions
dbwarner5 replied to ScottAvery's topic in eisy
@ScottAvery Scott....sometimes you need to "re-sync" UDM to get it to see new devices. -go to Settings in bottom right corner. -scroll down to Controllers and click on it. -Choose Eisy... you will then be prompted with the choice to Synchronize, Choose yes. -After it's complete, it will ask you if you want to delete old data.. say yes. It should show up after that. In regards to the parameters, in the Admin Console, go to the switch and see if there is an "arrow" to the left that you can click on to EXPAND the elements of the z-wave device. You would find the parameters there. If there is no arrow, then right click on the z-wave device and then zwave / synchronize / update with interview as shown below. That should bring in all the parameters. -
If you open up PGX adn the Plug in for the elk and go to the NODES tab... for each device, the system code you need will be on the right. There is "copy" icon. If you click on that icon, it will copy the correct format you need for the plugin's zones and status. You will need to update each line in your custom notification to display the correct "address" to the new nodes. The zones/devices you are using above are part of the old / discontinued module, vs the new Plug-in nodes.
-
Its still a good idea to regularly to the backups that were suggested, so that if your unit someday dies, you have them all ready to go.
-
@srjacob Be sure to to open up the ELK desktop program and get all your "connection" information copied, such as ip address, passwords, and settings in the Elk MEXP module. This will be needed to populate the config files in the Elk Plug in. By the way , the elk plug in works really well. Have not had any issues with it, but it does require rewriting most of your elk programs. Some of them you can do a find / replace in. Key as mentioned above is to right click on the top of your program hierarchy and click copy folder to clipboard and then past it into a text application. This way you can easily see what the original program was meant to be. If you use Resources, it's good to also export a copy of that as well.
-
@teverk am not sure why you are looking for a 3 way switch. Any normal Insteon switch can be wired and configured to work as a 3 way. Insteon has dimmer and on/off switches available. https://www.insteon.com/wall-switches
-
UPDATE: @Panda88 So this time, I Stopped the PI... did the update and got this: But then when I hit START... it reverted back to 1.2.5:
-
Having hte same issue.. Everything appears to go thru the update process: asks for slot, asks to update. Plugin restarts, etc, but version stays on 1.2.5. thanks. attached is log set to info YoLink_11-18-2024_111432_AM.zip
-
Found it. Was able to "install" right over top of the old one so did not have to recreate names or configuration. Working. thanks!
-
FYI.. Just tried to update vis UDM / settings / plugins and getting ERROR, invalid node server. Hit the update button directly on PGX.. goes to a blank screen. Went to purchases.. not showing up Went to non production store, not showing up Went to production store, not showing up. thanks.
-
Would th number of lines also have an impact? All the programs should have the same number of lines, even if that means adding another $test_X = 0 at the top. This would be to test if both programs start at the same time in your test 1, but program one has an extra line to process and hence turns the test_2 to 0.
-
EP40 outdoor double plug stopped being recognized by Plug in
dbwarner5 replied to dbwarner5's topic in Kasa (TP-Link)
@Jimbo.Automates Worked!!! Shows and operates as expected again! Thanks! -
I dont think it is that important. Just something I had to figure out.
-
Ok.. that makes more sense then now.. Your motion sensor could be turning off, which would also stop the program, and then back on, restarting the program. How do you have that set up?
-
@smorgasbord Try making your if statement Bathroom Motion-Sensor' is switched On And $RecirRanRecently is 0 And then eliminate the first line in your THEN. As you have it written, when it hits the first WAIT, the IF is re-evaluated. Since you just changed the variable to a 1, it fails the IF and turns False, stopping the program.
-
If your goal is to have Program 2 run "in the middle" of program 1, you can put a wait in program one, right after the "call" for a length of time you need for program 2 to complete. Just be aware that program 2 can NOT change the If state of program one in any way, or program one will either start over or run false etc, as it will be re-evaluated at the WAIT.
-
Solved it! thanks!