-
Posts
749 -
Joined
-
Last visited
Everything posted by PurdueGuy
-
I meant reseting/restoring the switchlinc..not the ISY. Only do this if you don't have any manually created links, or are willing to recreate them. Any links managed by the ISY will be restored. Usually you pull the Set button out, wait 10 seconds, push the Set button back in and hold until the long beep stops, wait a few seconds, it double-beeps, and turns on. Then go to ISY, right-click the device, and click "Restore Device"
-
Sounds like the ISY isn't getting the notification that the device was turned on or off locally. When you toggle the switch locally, does the status update (not just the program running)? You might try resetting/restoring the device…the link record to the PLM might have been corrupted?
-
When you go to the Admin Console, check Programs tab -> Summary. Find your program, and see what its status is. If you turn the light on while you are watching, it should flip to "Running 'Then'" and show "True" for the status. Also, do you see the status in the Admin Console update immediately when you turn the switch on?
-
Thanks belias! I just set mine up for my one leak sensor, with 2 more on the truck for delivery from SmartHome!
-
Speaking of looking at newer items, I have about $800 in my cart at SmartHome. I'm holding out for Black Friday/Cyber Monday sale. Coupled with my attempts to use the Home Improvement Gift Card could make it 25% off!
-
Assuming you set the variable to 0 when it is not detected, something like this? ProgramA: If From Sunset To Sunrise (next day) And $PhoneDetected is 0 Then Wait 60 minutes Run Program 'ProgramB' (Then) Else - No Actions - (To add one, press 'Action') ProgramB: If - No Conditions - (To add one, press 'Schedule' or 'Condition') Then Else - No Actions - (To add one, press 'Action')
-
To add to what Brian H said… The ISY has what looks like 2 network ports. However, 1 is the serial port (Port A), and 1 is the ethernet port (Network). Don't confuse the two!
-
Did you turn one on directly from the admin console? If you turned one on from the admin console, that generates a direct message to the target device, and it acts upon it. Turning a device on that way will not turn on the other responders linked to that device. If you want to turn on both devices, click on the scene name (in this case "Den Fan Light 3W") and then click the "On" button.
-
I found this thread while looking for an option to disable local programming on KPLs. Was a little bummed to find it! But given some previous notes about no options for certain other devices, could there be options for the OutletLinc dimmers (and maybe the relays, although I haven't looked). I have an OutletLinc dimmer (item 2472DWH) installed near my bed. When the outlet is off, it is red…and rather bright! I had my old software turn the LED off completly. Could this be added to the ISY? The same goes for the blue LED on my IRLincT. I hadn't tried to turn that LED off before, since it's new, but wow is that bright!! For now, I have covered it with black tape.
-
I'm watching this with interest, as I have a similar setup. However, I do not have a "Query All" program. Never have had one. I found an older thread about someone else not having it, and they were surprised. In fact, Michel even mentioned the 3 AM query in response to a post of mine. I am wondering if I should add it? Background thread about program missing: viewtopic.php?f=27&t=9121 My thread in which Michel commented about it: viewtopic.php?f=26&t=11348#p95427
-
One point I can add....since I had all Z-Wave and have migrated to some Insteon, some Z-Wave (locks will stay Z-Wave for now). Z-Wave devices may appear cheaper, but there are some "gotchas" involved. Unlike Insteon devices, not every Z-Wave device can control other devices directly. In fact, most cannot. Another huge factor is instant status updates. Since every Insteon device (well, almost every device) can be a controller, that device can at least tell ISY that it was turned on. Many (probably a majority) of Z-Wave devices do not support instant status*. GE devices do not, but Leviton and Cooper do. However, Leviton and Cooper will definitely cost you more than a GE/Jasco device, and probably more than a comparable Insteon device. *There can be workarounds for devices that don't support status updates, but that usually can only occur if the device is in direct RF communication with the controller. You can search for "z-wave patent instant status lutron" to read more.
-
Ok, that's what I thought. I was confused when you said "...not set the LED backlight using direct commands" - but the backlight works ok, just the individual button LEDs (which is also a backlight, but I was thinking the overall backlight, not individual).
-
Thanks Michel! My question was more basic. Being a new user to ISY, I had no issue creating scenes that would set a given button for a KPL on or off as desired. Then when I created a program to do that, while I could add something to the program like "set EntryKPL-B ON" nothing would happen. I read that I needed to make a scene that did that, and call that scene from the program. I did that, and that's fine, but that takes up links (right now, I have around 30 Insteon devices, so I am not concerned with the number of links). However, I bought the developer kit when I was updating some open-source Insteon code to add the capability to set a given button either on or off, and this didn't require links. It did require knowing the current state of the buttons, and adjusting things accordingly. It used an Extended Command, cmd1=0x2e, cmd2=00. You can search the documentation for "Set LED State for Button" to find out more. Unfortunately, the docs are a bit misleading, as this takes all 6/8 buttons as a single entry (the local load button(s) cannot be controlled). Setting to 0xFF sets them all to on, setting to 0x00 sets them all to off, and something like 0xAA (10101010 in binary) sets buttons B/D/E/H on. The highest bit is button H, down to bit 0 which is A (even though that is always the local load and can't be manipulated in this way). Sorry, that's clear as mud!
-
First time poster, been lurking for a while. I just picked up an ISY994i to bridge the gap from my Vera to Insteon. I'm curious why the ISY won't direct LEDs? It can be done, although they have to be set as a group. You can't target an individual LED without targeting all of them. You can get the state of all buttons on the KPL, change the desired ones, and then set the new values again. Granted, that can be slow. If ISY is a responder to all buttons and programmed all the links, it should know the current at any given time. It could keep that in memory, and use that to set the new bitmap of buttons (it is not foolproof, however, since they might change and ISY misses the update). I can totally understand if the reasoning is "it needs to work all the time and be fast, not 95% of the time or sometimes slow" but I am just curious.