-
Posts
4669 -
Joined
-
Last visited
Everything posted by MrBill
-
What my suggestion actually does is change the button to NON-TOGGLE and in the second half of that set up you configure it to send OFF only. Select the switch in the tree and press this button: Select the individual switch in the dialog: Change it to NON-Toggle by pressing "Toggle on/off" and then you will see another dialog box that has On and Off choices... Choose OFF. (Choose off because we don't want the light behind the button On) Now write a program that looks like this: Goodnight - [ID 0036][Parent 0096]If 'MBR Ceiling Fan+# / Goodnight' is switched Off Then Run Program 'dc00._trigger.0' (Then Path) Resource 'Hue Living Room Art Off' Set 'Foyer Overhead (Fish)' Off Set 'Glass Shelves' Off {redacted about 30 lines} Else - No Actions - (To add one, press 'Action') Had we set it to Non-Toggle ON (instead of Non-Toggle OFF) the back-light for the button would be always on. If you had the buttons connected to the switch with scene's, it's just a matter of going to the bottom of the list and picking the scene instead. Same list in the admin console, but scenes are at the bottom: (note the ICON to the LEFT of the word Foyer, that means scene.
-
Turn off the Scene that links those buttons to another device instead of turning off the device. Change the NIGHT button to Non-Toggle OFF. Then the If of your program should be "If Night Button is switched off" (Use the Control Menu to get "is switched off") then in the Then of the program, turn things off or on as needed, using scenes if the device is in a scene, only use the device directly if the device isn't in a scene.
-
that program shouldn't be sending anything at 1AM. however I would send the notification off the sensor itself and not the siren which is apparently in the scene, unless that's just a confusing folder name and the device is the leak sensor. You might right click a program name and then pick Find/Replace. Change the drop down to "raw text" and type "Notification" without the quotes and with a Capital N and then cycle thru your programs with the find button to see if there is anything else that could be sending the notification in error.
-
post the program.
-
right click the programs that send notifications program name and pick copy to clipboard, then paste them into a message. We have no idea what the programming issue is without seeing the program. If it's programs that are linked by variables or otherwise be sure to post other interrelated programs also.
-
What specifically did you change? It's possible to factory reset the entire device, but that may be creating lots of work for you. there may be another way but without knowing what you change and where it's hard to help. https without a port specified will point to port 443, http without a port specified will point to port 80.
-
Factory Reset manually, followed by Restore Device. The think to remember is that you're not only zeroing out unused links but you are also refreshing all hardware storage locations to a known state. There are Insteon Options that the ISY doesn't know about, for example separating the switch and the load. How could it have been changed then? who knows? Maybe it arrived with trash in a register, perhaps a register that only uses a couple of bits, has some trash in another bit, does it matter? probably not. My point is Factory Reset goes beyond cleaning up the links table. Its possible that "Restore Device" alone will solve a problem, but it's also possible that Factory Reset plus Restore Device is what will be needed. How are devices linked via the admin console. SCENES. Scenes create links.
-
Admin Console Not Finding ISY
MrBill replied to FloridaGary's topic in New user? Having trouble? Start here
why don't you just add it manually? -
Why aren't you using that PLM with your Polisy. Although the cable was in fact and ethernet cable it wasn't being used as one, it was carrying serial data. Using your old PLM with polisy is your best bet.
-
I did a better commented version of that post somewhere, but let me add some commentary to the programs: =================================================================================== Lamp 1 - [ID 0098][Parent 00B7] Folder Conditions for 'Lamp 1' If - No Conditions - (To add one, press 'Schedule' or 'Condition') Then Allow the programs in this folder to run. ----------------------------------------------------------------------------------- Alexa.on - [ID 000C][Parent 0098] If $Dim.Lamp1 > 0 And $Dim.Lamp1 <= 100 Then Set 'LR Lamp 1' On '$Dim.Lamp1 %' <--- Set the Scene to on, actually no need for the variable here. Wait 1 second Set 'LR Lamp 1#' On '$Dim.Lamp1 %' <--- Set the individual DEVICE to the correct Dim level Else - No Actions - (To add one, press 'Action') ----------------------------------------------------------------------------------- Manual.on - [ID 0099][Parent 0098] Include any switch or button that can turn the light on. If '{hide}Living Room Fan Lights+ / {hide}Lamp 1' is switched On Or '{hide}Living Room Fan Lights+ / {hide}Lamp 1' is switched Fast On Or '{hide}Living Room Fan Lights+ / {hide}Lamp 1' is switched Fade Stop Or 'Kitchen Table Light# / {hide}Lamp 1' is switched On Or 'Kitchen Table Light# / {hide}Lamp 1' is switched Fast On Or 'Kitchen Table Light# / {hide}Lamp 1' is switched Fade Stop Or 'LR Remote -Deb - A-B' is switched On Or 'LR Remote -Deb - A-B' is switched Fast On Or 'LR Remote -Deb - A-B' is switched Fade Stop Then $Dim.Lamp1 = 101 Else - No Actions - (To add one, press 'Action') ----------------------------------------------------------------------------------- Off - [ID 0095][Parent 0098] If '{hide}Living Room Fan Lights+ / {hide}Lamp 1' is switched Off Or '{hide}Living Room Fan Lights+ / {hide}Lamp 1' is switched Fast Off Or 'Kitchen Table Light# / {hide}Lamp 1' is switched Off Or 'Kitchen Table Light# / {hide}Lamp 1' is switched Fast Off Or 'LR Remote -Deb - A-B' is switched Off Or 'LR Remote -Deb - A-B' is switched Fast Off Or $Dim.Lamp1 is 0 Then $Dim.Lamp1 = 0 Set 'LR Lamp 1' Off Else - No Actions - (To add one, press 'Action')
-
Not kn owing anything about how your programs are set up, all i can give you is a basic generic troubleshooting step. Find the program that sends the notification, right click the program name a choose "Run Then" (or perhaps "Run Else") and see of the notifications fire manually. then we can try to figure out what to try next.
-
its not the IDE that you asked for, but I'm not sure that exists. It does solve your issue completely tho, by providing a full featured python (and other platforms) editor with formatting, completion and other tools. hit ctrl-s or close the file and it's saved back to it's source. You can test live in another window. I have two PG2 node servers that I put together for personal use and never published. The solution works like what you asked for but it's not what you asked for.
-
I use the same thing on Polisy that I use on the websites that I maintain. WinSCP coupled to Sublime Text. Both have non-expiring trial licenses (a.k.a nag-to-pay, however both are definitely worth the low fee). To use the two together, in WinSCP preferences modify the editor and point it to the Sublime Text binary in windows program files. As soon as the file is closed or saved in sublime it will be saved back to the server (Polisy). You can also configure key pairs for login, so that just opening WinSCP and pointing to Polisy logs you in.
-
It's been a long time since I tried the Push node server and I don't remember why for sure but it didn't fit my needs--but it might have been the messages weren't customizable enough. I use @JimboAutomates node server titled "Notification". It too is a little confusing at first (learning curve), but after it's understood it's far more powerful in how it can be used. I think this is also the only Pushover solution that will retry on common internet failures, such as no 200 Ok reply from Pushover. There are 3 methods that I know of to use Pushover, directly from NR's as documented in the Wiki, The Push node server, and the Notification node server.
-
agree with @tazman 5 seconds probably isn't long enough.
-
+1 for Spark email client. I discovered that when looking for an easy way to get email notification on just one email account. I spew google conspicuously theories so I'm one that doesn't use Google (after I started getting ads for something that was randomly spam emailed to me, I no longer felt good about google), so I use Spark with an email address I created at Comcast just for the ISY. Another trick that I use is the ISY sends FROM: the same Comcast address that it sends TO:, which of course is the address that is configured in Spark. The ISY sending TO the same account is great for speed/no delay).
-
Perhaps you should open a support ticket support@univeral-devices.com and get some one on one assistance. I actually don't understand the problem anymore... the issue seems to have migrated from can't access the admin console using a deprecated method to ISY finder doesn't find the ISY, which is a different issue entirely and probably due to something external to the ISY eco system. Support is waiting to help you: support@universal-devices.com
-
sounds like a bug that I haven't seen anyone report yet, like you most people here probably don't use thermostat programing because they have an ISY. Should probably open a support ticket: support@universal-devices.com to make sure the bug is tracked.
-
@Andre DouyonAre you running the official release of Oracle Java 8 from https://www.java.com or some other distribution? UD only supports Oracle's Java 8, you may have success with a different Java distribution, or you may not. Clear your java cache, you must check the box for "Installed Applications and Applets" Also delete any files you see named start.jnlp or admin.jnlp then download a fresh copy of start.jnlp from this link: https://isy.universal-devices.com/start.jnlp The first time it is run it will re-install the ISY Launcher icon on your desktop.
-
Clear your java cache, you must check the box for "Installed Applications and Applets" Also delete any files you see named start.jnlp or admin.jnlp then download a fresh copy of start.jnlp from this link: https://isy.universal-devices.com/start.jnlp The first time it is run it will re-install the ISY Launcher icon on your desktop.
-
Interesting. I have no explanation. Check Program > Summary tab and see if all 3 of the Variable Control 2 programs like this one: HVAC- Variable Control 2 - [ID 003C][Parent 0038] If 'HVAC-Dry / HVAC-Heartbeat' is switched On Or 'HVAC-Dry / HVAC-Heartbeat' is switched Off Show as Running Then in the Activity column .
-
Since there is another thread on the same topic down in the Mobilinc subforum I'm going to ask the moderator to lock this thread. The original poster here has resolved his problem, the Moblinc connect issue should continue at the thread linked above.
-
Also be aware that if you're using Mobilinc connect you will need convert to the ISY portal to use UD Mobile. It should also be noted that with the original Mobilinc apps (pro, HD, and Orchestrated) can be configured with the ISY portal. (I think for Mobilinc X the user has to pay a one time fee to use X with the ISY portal....not an expert in that area tho.)