Jump to content

LeeG

Members
  • Posts

    12943
  • Joined

  • Last visited

Everything posted by LeeG

  1. Here is a screen capture of the display changing the KPL button to non-toggle On mode. Did not know how to include in the PM
  2. "How do I program in a loop that will repeat the "then" commands every 3 hours?" If From Sunrise To Sunset (same day) Then Repeat Every 3 hours Set 'Crawlspace Pump' Off Wait 5 seconds Set 'Crawlspace Pump' On Else Set 'Crawlspace Pump' On Because the Set 'Crawlspace Pump' On might not execute in the last cycle depending on the time between Sunrise and Sunset that same statement can be added to the Else clause. This insures when Sunset occurs the Pump is turned back On
  3. LeeG

    Checking a Program

    "is it possible that as soon as line one executes, the status of this program changes to false and goes to the 'Else' condition." No, that is not possible. If the Program had a Wait or Repeat then the answer would be Yes. Without a Wait or Repeat all the statements in a clause execute even if the statements in the clause change the Status. For those that might not have been following once the Program was Saved it worked.
  4. Put the KeypadLinc button in non-toggle On mode. Each time the button is pressed the button LED will be On after two flashes indicating non toggle mode. Define an ISY Scene with the KeypadLinc button as a Responder. In any Program that turns the Fan Off, add a Set Scene xxxxx Off for the Scene with the KeypadLinc button as a Responder. The KeypadLinc button will be On anytime the Fan is running at any speed and Off when the Fan is Off.
  5. It is not a good thing to do. Any Query Program that updates Status in a meaningful time frame overloads the powerline network. Better to use the non-ICON LampLincs where there is going to manual changes.
  6. LeeG

    Checking a Program

    Take a look at the UDI Wiki. It has good information on each of the Program statements. I don't know of anything like an "ISY for Dummies" book. They have published "xxxx for Dummies" books on just about any subject. Perhaps there is one in print.
  7. Click on one of the If Control lines in the If section. The bottom of the pane that contains the Program detail will contain two buttons at the lower right side "Add And (..)" "Add Or (..)". Click the "Add Or (..) button. Two lines will be added to If Section. Use the Move Line Up button along the lower left section to move the parens to the desired location.
  8. In the “FIREPLACE FAN LOW†Program the two If Control statements are ORed together. See the red Or below. This says if either an On command is received OR an Off command is received. FIREPLACE FAN LOW If Control 'Downstairs KPL / Downstairs KPL- D' is switched On Or Control 'Downstairs KPL / Downstairs KPL- D' is switched Off And Status 'Fireplace-Fan' is Off Then Set 'Fireplace-Fan' Low In the “FIREPLACE FAN HIGH†Program the two If Control statement are ANDed together. See the red And below. This says if an On command is received AND an Off command is received at the same time. It is IMPROSSIBLE to receive an On command AND an Off command at the same time. The And should be changed to an Or. In addition to changing the And to an Or, parens need to be added as shown. This needs to be done in all the Programs. It has to do with the Order of Precedence which is described in detail in the UDI Wiki if you want to know why this is needed. FIREPLACE FAN HIGH If ( Control 'Downstairs KPL / Downstairs KPL- D' is switched On And Control 'Downstairs KPL / Downstairs KPL- D' is switched Off ) And Status 'Fireplace-Fan' is Med Then Set 'Fireplace-Fan' High
  9. No need to run the Event Trace. The 2856D2 does not have Controller capability. It cannot notify another Insteon device that it has been turned On locally. That is why the node is displayed in Blue. Besides the node being Blue (indicating a Responder Only device) take a look at the LampLinc User Guide. There are no instructions for linking the LampLinc as a Controller, only for linking the LampLinc as a Responder. If you want a LampLinc that has the ability to notify the ISY of local changes, pick one where the User Guide has instructions for linking it as a Controller as well as a Responder.
  10. What is the exact type number of the LampLinc, what does the Admin Console show for the LampLinc firmware level v.??, and is the LampLinc node Red or Blue in the My Lighting tree? LampLincs normally do send status changes back to the Admin Console. Bring up Tools | Diagnostics | Event Viewer with Level 3-Device communications events selected. Manually cycle the LampLinc On and Off. Is there Insteon traffic traced when the LampLinc is manually cycled?
  11. The two Control statements should be ORed together, not Anded. As in the other Programs. If Control 'Downstairs KPL / Downstairs KPL- D' is switched On And Control 'Downstairs KPL / Downstairs KPL- D' is switched Off And Status 'Fireplace-Fan' is Med
  12. I’m not enough of a network guy to understand what affect the port number and userid are having. Can you try the simple forum I posted (with your local IP address) into a browser command line and confirm the basic REST part is working. Someone with more network savvy than I will have to pick up from there.
  13. What is the file size of the Zip file? The next thing that folks run into is the router/AV is blocking the upload of the new image.
  14. Right click on the Program name in the left pane and select Copy to Clipboard. Then paste in the post. All the Programs will be needed.
  15. Then something in the Programs is not working right. Post the Programs.
  16. Why does the call have the variable name rather than the varID?
  17. Was Safari used to download the file. If so it will unzip the file as part of the download. The ISY image is a Zip in a Zip so that may not be apparent. There is an option in Safari not to Unzip.
  18. I can cover part of the question. http://92.168.2.2/rest/vars/set/2/1/16 Sets "State" Variable with ID "1" to a value of "16". The variable ID is displayed to the left of the variable name in the Variables tab.
  19. Follow this link to document that covers REST .. http://www.universal-devices.com/develo ... Manual.pdf
  20. Have you looked into REST. Should be able to use a REST command set the Variable.
  21. Using the Admin Consolel does the Fan go to high speed when the slider is moved to High?
  22. Reboot the ISY. I don't think there is anything possibly residual from the deleted program but that will ensure nothing is left behind. Are there any other Programs that could be sending an email. I don't send emails. Is there anything in the ISY Log that confirms an email has been sent.
  23. LeeG

    Checking a Program

    The Program is being triggered when 'Alana's Bedroom' is changing state (Status changing). It is running the Else clause because it is not 11 PM when the light changes state. The next important time is 11 PM. Will need to know what the ISY is showing for the Current State of 'Alana's Bedroom' light going into 11 PM. If you want to test what is going on in the Then clause insure the light is On when 11 PM occurs. Look at the Last Run Time and Status columns a few seconds after 11 PM when the light is On. Does it show Last Run Time at 11 PM and the Status True which indicates the Then clause ran.
  24. LeeG

    Checking a Program

    Under Programs | Summary what do the Last Run Time and Status columns show for the Program?
  25. Is DHCP being used? Perhaps the router assigned a different IP address.
×
×
  • Create New...