Everything posted by Xathros
-
Program Folder Problem
Click once on the folder in the tree - the conditions will appear in the IF section on the right. -Xathros
-
Toggle a variable value
If you disable that program and call it from another program (Run If Path) then you will get the result that you want. Disabling a program prevents it from self triggering but it does not prevent it being run from another program. Hope this helps. -Xathros
-
Check status of KeypadLinc button
Does the KPL and all of its buttons appear in the admin console? If so, what do you mean the button has no "On" value? If it is a KPL Dimmer, the button A (KPLD8) or On Button (KPLD6) value should be somewhere between 0% (Off) and 100% (On). If it is a relay device it should only be capable of 0% or 100%. The non-load buttons should only be capable of On/Off. Being a scene member does not make a device not have a status. -Xathros
-
Check status of KeypadLinc button
EircK- You are correct that it would need to be a state variable as a state variable will trigger a program on a change in value just like a device will trigger on a change in status. In this case there would be no difference between the status of the button and the state of the variable. Adding the variable is just an extra wasted step. You would be monitoring the status of the KPL to set the variable then using the variable change and time to drive the lights. Might as well just use the button status and the time to accomplish the same end goal with fewer programs. Does that make sense? starhome- Your KPL buttons should have a state in the console and you can look for the status in programs as follows: If Time is 6:30am and Status MBR_KPL-D is On Then As Lee pointed out above, this approach would require that the KPL button be on at 6:30 for to happen. If you would like to have the happen between 6:30 am and some later time when turning the button On, you could change the time component of the IF to a range instead: Time is From 6:30am To 10:00am (Same Day) To take this all a step further, you could add a function to the KPL button being turned off or the end time of the range arriving as follows: If Time is from 6:30am to 10:00am (Same Day) and Status MBR_KPL-D is On and Control MBR_KPL-D is not switched Off Then Else In the above program, turning off the KPL button anytime will as well as the arrival of the 10am end time. Hope this helps. -Xathros
-
Need help programming dimming based on time
Only down sides to the multi-scene approach is the delay caused by waiting for a program to respond to the local control then set the scene on. And, in a situation where a local control is also the load controller, you will see the lights turn on to the locally set onlevel and ramp rate then change a second or so later when the program sets the other values. Using the adjust scene method allows instant reaction to a local control. This is my preferred method for switch type controls. I use the multi scene method with motion sensors and door sensors as the triggering controls. There are pros and cons to either method. You just need to pick what works best for you. -Xathros
-
Missing Required Permission Manifest Attribute
See: http://forum.universal-devices.com/viewtopic.php?p=108831#p108831 -Xathros
-
Need help programming dimming based on time
And in addition to what LeeG said above, if the lights are on at the times the scene is changed and you want the lights to dim or brighten automaticaly, you will need to add another program with a "Set Scene 'Basement Playroom Lights' On" command scheduled for the times above - or maybe a few seconds after the times above to ensure the scene adjust runs first. Simply adjusting the scene parameters does not change the current on level - you must set the scene on again after the change. -Xathros
-
New voice control for Mobil lync pro
I believe you will have this in your next update if not already. It is part of the Geofence settings on the iOS Mobilinc. -Xathros
-
Single program toggles a device from off to on & on to off?
Try one program (disabled) and call runIf with /rest Program: ToggleLights (disabled to prevent endless loop) If Status MyLightSwitch is not Off Then Set MyLightSwitch Off Else Set MyLightSwitch On Hope this helps. -Xathros
- Variables
-
I can't get into my isy99.
-
I can't get into my isy99.
Is the location shown the same as what you entered in the Exception list? Try clearing the java cache (including applications) then go to the security tab in the java control panel, click manage certificates and remove any listed from Universal devices. Then start again by double clicking the admin.jnlp file in your downloads to create a new desktop icon. Accept any certificate prompts along the way. -Xathros
-
I can't get into my isy99.
Not sure what the block is. I have access to my Admin with just the URL for the isy in the exception list and the slider set to the center setting. Are you getting an error message? what exactly happens when you double click the Admin icon on your desktop? What Windows version? -Xathros
-
I can't get into my isy99.
Try adding http://your.isy.ip.address/admin and http://your.isy.ip.address/admin/admin.jnlp to the java exception list as well. -Xathros
-
I can't get into my isy99.
All set now? -Xathros
-
I can't get into my isy99.
Did you substitute your isy's ip address for the beginning of that link? -Xathros
-
I can't get into my isy99.
Good. See additional info in my previous post. -Xathros
-
I can't get into my isy99.
OK. We should probably start with an update to the latest Java 1.7.51 from Java.com Then, follow those directions to add the ISY to the exception list. Then: Goto http://your.isy.ip.address/admin/admin.jnlp and save the resulting download to your downloads folder. Go to your downloads folder and double click the admin.jnlp file that you just downloaded. This will recreate the desktop shortcut. Double click the desktop Admin icon. -Xathros
-
I can't get into my isy99.
What version of Java do you have? -Xathros
-
I can't get into my isy99.
See: http://forum.universal-devices.com/viewtopic.php?p=108831#p108831 Hope this helps. -Xathros
-
Cannot backup ISY
We got this one resolved in another thread this afternoon. Was a combo of Safari download options and Java security settings. -Xathros
-
ISY File Backup
All better. Solution was to un-check "Automatically Open Downloads" in Safari to get the jnlp file downloaded, then add the ISY's IP address to the exclusion list in the Java security tab. -Xathros
-
ISY File Backup
Yes. All of your stuff is still in the ISY. You haven't lost anything. We just need to get you back into the admin. -Xathros
-
ISY File Backup
Yes. The app was cleared from the cache. What happens if you go to: http://your.isy.ip.address/admin/admin.jnlp ? -Xathros
-
ISY File Backup
That may fix the problem *if* your running less than 4.1.2 firmware on the ISY. Otherwise that should make no difference. Did you look at that other thread about Safari? Do you get any error messages when you attempt to open the console? -Xathros