Jump to content

larryllix

Members
  • Posts

    14922
  • Joined

  • Last visited

Everything posted by larryllix

  1. I hope it works and you are not a lawyer.
  2. Welcome to the forum!! Not that many women are OCD enough to get involved with HA, or not lazy enough? If you have some distance my best guess would be the RF signal is just too far away from the nearest dual-band device that is capable of converting the RF signal to the powerline signal. Another thought is that the MS is behind metal, sheilding it from that device mentioned above when it sends it's detection signal. Another thought to prove this would be to plug in a dual-band device (OnOffLinc or LampLinc) into an extension cord with a rainproof bucket over it, close to the bin pickup location, for trial. Ohh. another thought. CAO Tags are small, send motion, temp, humidity etc.. and aare about 1.25' square by 1/4" thick. I have one that reports in when my wife is within about 1.5 miles away, from the glove compartment. They run 25-40 each and the manager about $60 to handle all units. I have four and everybody here, usuing them is really impressed.
  3. Thanks Stu. Changed program above. The ">=1%" OK now? I haven't ever used this technique myself. I use very few statii.
  4. You could change the LED brightness to match the speed. LEDs take scenes for them though. PITA. I like to operate multi-level devices with variables. 0,1,2,3 = off,low,med,high That way other programs can operate the device also by just storing a number into the variable, no jumping into programs that get modified later and then magically don't work.
  5. Backup up your own ISY Delete everything. (factory reset and reset a few parameters?) Install and link all your remote location devices. Backup your ISY to the carry-with-you backup file Restore your original file Take the carry-with-you file to the new location with all your linked devices. Restore at the remote site.
  6. I don't know about normal behaviour as I never have used a three-way action with a scene. However you could use a follow up program something like this. If ... control nonLoadSwitch is switched 'On' AND ... status of LoadSwitch >= 1% Then ... set nonLoadSwitch to 100% <----you could create another scene for these two with 100% levels, if desired ... set loadSwitch to 100% Else ... -- EDIT:Minor change to level after Stu's sharp eyes pointing out 0% doesn't work.
  7. In the admin console, access the device's page and set your brightness level to about 30% and the ramp rate to 2.0 seconds.
  8. These programs do not modify scenes. Insteon scenes are between devices and ISY has management tools to modify them. Scenes in your case can be used to group devices into looking like one device to ISY but you have no controllers in your scenes to operate outside of ISY.
  9. That is pretty difficult, using the same SwitchLinc dimmer paddle and the dimmer circuit. hey are connected inside and the dimmer will turn on to whatever level it is set to when the paddle is clicked at the top. This will result in initially turning your light on to whatever the local level is, and then make a program or scene take over and may result in annoying flashes at 100%. However I have done it by setting a slow ramp into the Switchlinc dimmer...say 2.0 seconds and then beating the ramp response with an ISY program. You need to access the admin console devices page and set the ramp speed to about 2.0 seconds. If ... control Switchlinc is switched 'ON' Then ... run program2 (If) Else ... --- Program2 (disabled) <--- we don't want these times triggering this by itself If .... from 8:00 AM ... to 8:00 PM Then ... set Switchlinc 100% Else ... set Switchlinc 20% Get rid of the scenes in the devices as they will confuse the response and the owner. OR You can keep the scenes without a controller item installed and use the above programs to run you scenes instead of just one SwitchLinc. You will have to program the scenes to preset your bulbs to levels desired first.
  10. Use two programs Program1 If ... triggering units send Then ...call Program2 (if) Else -- Program2 If -- Then ...Disable Program1 ...Do something ...Wait a few seconds ...Enable Program1 Else -- BTW; Your Wait waits for nothing that follows. and Right click on your program in the program tree and select "copy to clipboard"
  11. No. Two different devices. One contrller, like an MotionSensor or a SwitchLinc, and one responder, like a LampLinc or SwitchLinc light controller. Note that a switchLinc is really two devices, a paddle controller, and a dimmer, responder.
  12. Yes. but you have to have a scene with a controller and a responder. http://forum.universal-devices.com/topic/17495-how-to-use-a-ms-with-lights/
  13. In your scene adjustment you need to scroll the scene pull down list to the other end, and select the controller units, that are not really scenes.
  14. larryllix

    Night Light

    Stu is correct. This takes two programs to isolate the negative trigger from the sequence.
  15. larryllix

    Night Light

    Twin Light Dim - [ID 0016][Parent 0019] If Status 'Twins Room Light' is Off And Control 'Twins Room Light' is switched Off Then Set 'Twins Room Light' 35% Wait 6 seconds Set Scene 'Twins Room Light - Very Slow' Off Else - No Actions - (To add one, press 'Action')
  16. OK then the logic I gave you is close except for the mobilinc input. Some things. Scenes cannot be detected. They have no status. Devices can be detected and have statuses. I am wondering why you want to use mobilinc to turn on the scene for the night lights when there are many ways to do it easier or automatically? How many MS units are involved and should all lights referred to be involved with the response or just hall lights for wanderes at initial bedtime runs?
  17. I really don't completely understand what you want but from my best guess, here is the logic. To turn on your night lights If ...MS.motion is switched ON <-----use the motion sensing node, not dark node ...And from sunset +/- X minutes ..........to sunrise +/- Y minutes <--- this triggers Else section Then ...set some lights to 25% ...Wait 12 hours <---just in case ...run This program (else) <----turn them off in morning Else ...set the same lights Off For the extra lights If MS.motion is switched On <---use the same trigger as many times as you like Then ...turn on other lights ...Wait 1 minute 30 seconds ...turn off other lights Else ---- Make sense? Need more help just keep asking.
  18. Then you must have changed your lines to status, no? Switched has no false. It is a trigger and is happenning or not happenning. Status has two logical states..true and false.
  19. See my previous post. Check your links. Then you will know what may have happened.
  20. Then it would seem your signals are not getting into ISY. Check your links from each device and do an ISY link compare (button on report box) If different do a restore
  21. OK. When either of your KPL buttons produce an On your program should trigger Then. When your KPLs produce an Off signal there is no program to trigger that detects the 'Off' signal. IIRC there is no status for KPLs? Try this to capture Off signals and run Else. If ( Control 'KPLs / Kitchen KPL / Kitchen KPL D (Door Sensors)' is switched On Or Control 'KPLs / Deck KPL / Deck KPL D (Door Sensors)' is switched On ) AND Control 'KPLs / Kitchen KPL / Kitchen KPL D (Door Sensors)' is NOT switched Off AND Control 'KPLs / Deck KPL / Deck KPL D (Door Sensors)' is NOT switched Off I am not sure where the parenthesis formatting falls but the AND has a higher precedence so the OR lines have to be grouped.
  22. Just a few things t think about You have no program triggers based on motion. You have a time delay after all other lines of program code. You are waiting for nothing. I don't know what 'fade down' does. I have never used it.
  23. What are your trigger KPLs set up as? Programs look OK, but if the KPLs can't produce and 'On' then this would make sense. Have a look at the options for the KPLs and there should be no 'Off' setting enabled.
  24. Can your KPLs produce anything except 'On'? If not, what would run Else to disable your Chesapeake program?
  25. larryllix

    Night Light

    The original programs may be race dependent, and work sometimes having two programs hit on a lamp for the last word on the setting.
×
×
  • Create New...