Jump to content

TJF1960

Members
  • Posts

    1800
  • Joined

  • Last visited

Everything posted by TJF1960

  1. Yes, the ISY writes the local on levels to the dimmer, what you are trying to do should work. Problems with the on/off status in the gui do indicate something is not right. I have found sometimes rebooting the ISY and PLM will clear up strange issues, but aside from that I am sure LeeG or Michel can/will offer further assistance. Tim
  2. To test I just created a new scene with a SL Dimmer as a controller, no other devices are in the scene (although that shouldn't matter). Went back to a program, selected "adjust scene" and that SL Dimmer showed up in the drop down box for "In Scene" whereas that device wasn't an option before it was made a controller in the new scene. I should have asked what platform version for the ISY are you on and what does the ISY report the version is for the dimmer you want to scene adjust? Also, are there any devices showing in the drop down box or just scenes? Tim Edit: I just re-read your first post and see you are on 3.1.2 same as mine. Sorry. What is the version reported of the dimmer?
  3. As I recall the device needs to be in a scene as a controller. Once a scene is created with the device as a controller that device will appear in the drop down box. Then you may select the device as you were correctly trying to do. To power cycle a SL you can just pull the set tab out at the bottom of the rocker switch for 10 or so seconds which removes power from the device. Tim
  4. Andy, Agreed, it is confusing. To expand upon Lee and apostolakisl’s comments try thinking of it this way. Once a wait or repeat is reached in the program any trigger change in the “if†during execution will cause the program to re-evaluate during the wait or repeat. If none of the triggers change after execution has begun then the program will not re-evaluate. A single time schedule in the “if†does not cause automatic re-evaluation by itself because the trigger (1:00pm) didn’t change (its merely waiting for 1:00pm in order to trigger). Tim
  5. Shouldn't the variable be set for 14 in order for the program to run "then" every 15 days?
  6. Andy, Just for clarification is variable “$Cleaning_Day “ an Integer or State variable (guessing Integer)? Thanks, Tim
  7. Along with LeeG's comments you could drop the second program by adding a wait after "Set 'Garage Door Relay' Off" then add it again. If Time is 10:00:00PM And Status 'Garage Door Sensor' is On Then Set 'Garage Door Relay' Off Wait 1 Minute Set 'Garage Door Relay' Off Else - No Actions - (To add one, press 'Action') If the Garage Door Sensor does not turn off by the end of the wait period the second "Set 'Garage Door Relay' Off command will run. If the sensor does turn off within the wait period the program will turn false and not run the second command. Tim
  8. Confirmed on mine as well. Thanks, Tim
  9. I have a slightly different take on it. Since the program is not looking for a “switched Off†from the motion, once it does switch off it will not affect the program – running or not. If at anytime during the “wait†the motion is switched on again or the state of either variable changes (I am assuming the programs are “stateâ€) then the program will re-evaluate immediately. If the condition evaluates true it will start the “then†over again. If it evaluates false the program will stop running and the program will turn false immediately, not completing the “then†section (in other words “Set Scene 'Closet Lights / Closet light Switch' Off†will not occur). Is it possible that during the wait either one of the variable states may be changing which would halt the program? Tim Edit: As far as needing the brackets, I don’t use them unless I am using and/or combo’s and they are absolutely needed. I don’t believe you need them in this program. It has been my experience that having the 3 conditions listed as you have them without the brackets will evaluate anytime any one or more change state, but the “then†should not run unless all 3 “if†conditions are true. In answer to your other question, without brackets the order would be from the top down as far as I understand it.
  10. TJF1960

    Reboot sequence

    Hi Chris, Thank you. Just so I understand correctly, Is device query run first to initialize device status then on to step 1 - 5? Thanks, Tim
  11. TJF1960

    Glitch with AWAY

    jca001, I am old school with programs and haven’t done much with variables. As such I have been trying to figure out a program using variables to accomplish the same results as the 3 program examples above (Reboot Away KPL Off, Reboot Away KPL On and Reboot Away KPL Status). It seems to me, at least as far as I can see, it would still require 3 programs + variable. But I do not have the experience with variables as some of you do. I know it would be asking a lot but could you provide example programs and variables to demonstrate how you would replace the 3 programs mentioned? Thanks, Tim
  12. TJF1960

    Reboot sequence

    After power is restored to the ISY what is the boot sequence (including Run at Startup commands) and now that variables have been introduced where exactly do they fall in the sequence? Thanks, Tim
  13. TJF1960

    Glitch with AWAY

    aLF, Yes, set the program to “Run at Startup†Yes except, if I followed your original post correctly, you would want to turn the away scene "off" at start up (in your example above). The only problem is if you were home and the power cycled off-on the ISY would still turn the scene Away off even though you are home. If you want the ISY to remember the state of your Away program and scene after a reboot I would suggest the following: Program: Reboot Away KPL Status If Status 'KPL Button' is not On Or Status 'APL ' is not On Then Set Program 'Reboot Away KPL Off Set' To Run At Startup Set Program 'Reboot Away KPL On Set' To Not Run At Startup Else Set Program 'Reboot Away KPL On Set' To Run At Startup Set Program 'Reboot Away KPL Off Set' To Not Run At Startup Program: Reboot Away KPL Off Set If - No Conditions - (To add one, press 'Schedule' or 'Condition') Then Set Scene 'KPL Button and APL' Off Else - No Actions - (To add one, press 'Action') Program: Reboot Away KPL On Set If - No Conditions - (To add one, press 'Schedule' or 'Condition') Then Set Scene 'KPL Button and APL' On Else - No Actions - (To add one, press 'Action') I use these programs for my own Away programs, only I turn "On" the KPL buttons to indicate I am Away, and turn them "Off" when I am home. So I had to reverse the logic in these examples (hope I got them correct). Program: Reboot Email If - No Conditions - (To add one, press 'Schedule' or 'Condition') Then Set Program 'Reboot Email' To Run At Startup Wait 15 seconds Send Notification to 'Tim' Wait 1 minute Run Program 'Reboot Email' (Else Path) Else - No Actions - (To add one, press 'Action') This is the program I use to send notification of a reboot. Remember to initially set this program to "run at reboot." Tim
  14. TJF1960

    Glitch with AWAY

    aLF, This might be what you need to restore the kpl button after a power failure. From the wiki: Darrell Peters wrote this set of programs to 'memorize' the state of a keypad button and restore it after a power loss. http://www.universal-devices.com/mwiki/index.php?title=ISY-99i/ISY-26_INSTEON:Programs_as_Variables:_ISY_Restores_KPL_State_After_Power_Loss Tim
  15. That is a very good idea. Thanks for the suggestion kingwr. Looks like I have some studying to do!
  16. It has been a while for this thread and I was wondering if anyone has taken the rfid or Bluetooth ideas any further and have actually integrated one or the other into their systems? Thanks, Tim
  17. TJF1960

    Alive or not alive

    You are welcome, and I hope it works too or at least helps in figuring out what is going on. I should mention that I have 4 programs which email me everyday. Every once in a while one of the program notifications seems to get lost. Its not always the same one either, it could happen to anyone of the 4. And it doesn’t happen all the time, maybe once a week. I haven’t figured out why yet but I do know the programs executed fully. What concerned me with your situation was that you indicated it would work for maybe 2 days then stop completely. Please post back the results. Thanks, Tim
  18. TJF1960

    Alive or not alive

    Yes, that looks right. Sorry, I wrote the example on the fly.
  19. TJF1960

    Alive or not alive

    You may very well be right. The program itself may not be the issue. And I agree the from/to time isn’t needed, neither is the run Else. However I like to finish off my programs to false when they are not running. Makes skimming thru the summary looking for running programs easier. Plus by adding a wait (of say 10 seconds) after the notification, then running the Else on the program itself will let you know that the program did run in its entirety. Take the OP’s runtime of 7AM. If my suggested program runs completely the summary tab runtime/last Finish time will show 7:00:10 AM which will confirm that the program started at 7AM and ended 10 seconds later. If the OP didn’t receive an email he could look at the summary tab to verify the program executed completely at which point he could focus his attention elsewhere. Whereas your suggested program would list the last runtime/last finished time as 7AM but that wouldn’t guarantee the program ran completely, just that it evaluated – big difference.
  20. TJF1960

    Alive or not alive

    I cannot answer why the notifications stop after a couple of days but perhaps changing the program to the following would help. If 7:00:00AM And Folder 'AWAY' is True Then Send Notification to 'ME' Run Else Else - No Actions - (To add one, press 'Action') At 7AM when the folder away is true the program will run and send notification 1 time after which the program will turn false until the next day. If you wanted to take it a step further you could add a wait between Send Notification to Me and Run Else. The benefit would be when you do not receive the notification you would be able to check in to the Summary tab and see the Last Run time to verify. If you use a 10 second wait then you will see 7:00:10 AM as the last run and last finish times which tells you that the ISY ran the program completely.
  21. I don't know that I can explain what causes it, it but I do have one battery charger on an appliancelinc that would do the same exact thing. My battery charger is electronic not a transformer, and your LV light power supply is probably electronic as well. More than likely it is some sort of voltage spike created by turning the power off to the power supply which locks up the appliancelinc. I found by installing a filter (X10 filter part number XPPF available on ebay pretty cheap) between the power supply and the appliancelinc, the problem went away. Tim
  22. I agree with LeeG and Brian H. I also keep a couple of devices on hand for expanding my system and in the past have replaced older version with newer versions without any issues. Currently the only duplicate modules I keep for replacements are the plm and an ezflora as those are the two most important devices in my system. Tim
  23. As I understood it, the v35 issue was only with Switchlinc relay (possibly some SL dimmers also?) but not with KPL's, can anyone confirm?
  24. What is the timeout set for on the MS?
  25. Good Catch fitzpatri8! I had just remembered reading that a long time ago and came back to post but you beat me to it! Tim
×
×
  • Create New...