Jump to content

doctorjerry

Members
  • Posts

    43
  • Joined

  • Last visited

Everything posted by doctorjerry

  1. This is a setup I really could use, but I need help setting up the program. In 2e - I don't know how do I add the line "And TIme is Last Run Time for 'KitchenSink - Variable Control 2' +26 hours? Jerome
  2. ISY 994i v.4.2.18 I've added an Open/Close Sensor 2843-222. It registers as a (2421) Trigger Linc v4.0 Is this right?
  3. I want to use the Insteon Wireless Thermostat purely as a humidity controller for a dehumidifier. Can I read the humidity and change the settings if it is linked to the ISY?
  4. Yes we did. Hello grif091. I never was successful with a debouncing circuit. As you see, I've come to use the ISY. I found it unreliable to run software 24/7 on a computer. Too many power outages here locking up the computer, and always when I was out of town. I had success for years using an Ocelot with X-10 and find a dedicated unit like the ISY preferable. Now that I've got the EZIO working properly I came up with a few programs to give me a reliable status change and avoid multiple notifications. It may be crude, but it works. WaterCop Control If Control 'IOLincs / EZIO1 / EZIO1 - 9' is switched On Or Control 'IOLincs / EZIO1 / EZIO1 - A' is switched On Or Control 'IOLincs / EZIO1 / EZIO1 - 9' is switched Off Or Control 'IOLincs / EZIO1 / EZIO1 - A' is switched Off Then Set 'IOLincs / EZIO1 / EZIO1' Query Wait 1 second Enable Program 'WaterCop Txt Off' Enable Program 'WaterCop Txt On' Else - No Actions - (To add one, press 'Action') ------------------------------------------------------ WaterCop Text Off If Status 'IOLincs / EZIO1 / EZIO1 - A' is On And Status 'IOLincs / EZIO1 / EZIO1 - 9' is Off Then Send Notification to 'Name.2' content 'Name.2' (WaterCop Off) Wait 1 second Disable Program 'WaterCop Txt Off' Else Disable Program 'WaterCop Txt Off' ------------------------------------------------------- WaterCop Text On If Status 'IOLincs / EZIO1 / EZIO1 - 9' is On And Status 'IOLincs / EZIO1 / EZIO1 - A' is Off Then Send Notification to 'Name.2' content 'Name.3' (WaterCop On) Wait 1 second Disable Program 'WaterCop Txt On' Else Disable Program 'WaterCop Txt On' ------------------------------------------------------
  5. I sent you a copy of the Link table after a restore. Is there a way to embed it into this reply without emailing it? The unit was never updated by the SHN. I did not delete the Iolinc and reinstall. For the most part both sensors are responding as expected, and sending the proper notification. I've been watching the inputs (using MobilLinc on my iphone) and I can see that the inputs seem to flicker a bit during the changeover. I assume this is from the WaterCop. I did read about the use of debounce circuitry when using the IOlinc for a garage door opener, but I have connected the two units directly. I also get multiple notifications occassionally. I assume this has to do with the flickering of the inputs too. Also, if I let a couple minutes pass between switching the Watercop on or off it is much more reliable.
  6. That worked Lee. I did a restore and the Show Device Links Table comparison is now identical. Now I see the input change immediately. But only only Input 2 seems to change reliably. Not input 1. I now use the change in input 2 to trigger a Query and that shows the changes to both inputs and triggers the notification. So I've have a working model. But I wonder why I'm not getting both inputs to show the change. Any more suggestions?
  7. Firmware v.2.8.16 (2011-02-18) UI v3.1.17 I'm confused with the statement: In the link record display produced by the Show Device Links Table verify there are E2 09 xx.yy.zz where xx.yy.zz is the ISY PLM address E2 0A xx.yy.zz I sent you a compare view of the information. I don't understand what the mismatch between the ISY links and the Device table links means. I can access the input information through the SHN Utility. That utility always requires a query to see a change in status. But the status always coincides with the administrative console.
  8. I don't see a selection for Event Viewer with Level 3-Device communications events selected under Tools|Diagnostics
  9. No it doesn't. That's why I had to add it to the programs. But if I run a query now the notifications seems to be working. I purchased the EZIO unit 11/21/2010.
  10. I'll explain everything I've done These are the directions I followed to install the EZIO2x4 From the Administrative Console... 1) Click on Link Management from the menu bar 2) Select New INSTEON Device 3) Enter the INSTEON ID of the SHN device you want to add (01.DC.39) 4) Give the device a name (Ex. EZIO1) 5) Select the device from the "Device Type" drop down menu 6) Select whether you want to remove existing links, add devices and remove links, or add devices and keep links to other INSTEON devices. 7) Click OK The ISY will begin populating the device information (inputs, outputs, links, etc...) This worked perfectly. In the administrative console I see 6 ports under EZIO1. EZIO1 - Relay1 EZIO1-2 Relay2 EZIO1-9 Input1 EZIO1-A Input2 EZIO1-B Input3 EZIO1-C Input4 Using the simplehomenet utility, the EZIO output timers were enabled and set to 2 seconds to act as momentary switches. The WaterCop interface has separate On and Off inputs that are controlled by momentary switches. Relay1 is used to control the On switch and Relay2 the OFF switch (+5vdc is supplied by the WaterCop and routed through the relays). Initiating Relay1 or Relay2 using either the Simplehomenet utility or ISY will turn the WaterCop on or off appropriately. The WaterCop interface has separate indicators for On and OFF (+5vdc also). The On indicator is connected to Input1 (EZIO1-9). The Off indicator is connected to Input2 (EZIO1-A). WaterCop Status On = Input1(EZIO1-9) On and Input2 (EZIO1-A) Off WaterCop Status Off = Input1(EZIO1-9) Off and Input2 (EZIO1-A) On I use these programs to check the Watercop Status. 1. WaterCop Notification On If Status 'IOLincs/EZIO1/EZIO1-9' is On and Status 'IOLincs/EZIO1/EZIO1-A' is Off Then Send Notification WaterCop On 2. WaterCop Notification Off If Status 'IOLincs/EZIO1/EZIO1-9' is Off and Status 'IOLincs/EZIO1/EZIO1-A' is On Then Send Notification WaterCop Off 3. WaterCop Status If Status 'IOLincs/EZIO1/EZIO1-9' is On or Status 'IOLincs/EZIO1/EZIO1-A' is On Then Set 'IOLIncs/EZIO1/EZIO1' Query Wait 2 seconds Run Program 'WaterCop Notification On' (IF) Run Program 'WaterCop Notification Off' (IF) No matter how I turn the watercop on or off - with Simplehomenet, ISY or manually, the Adminstrative console shows the proper input changes after a query. These programs work. If I run program 3, I get the appropriate notification. The problem is getting program 3 to trigger itself. It doesn't happen. I tried using Control instead of Status, but it makes no difference.
  11. Lee, Thanks. The program works for me partially. If I run the program it detects the On state and sends a notification. But it does not trigger by itself. Perhaps I better explain how I'm using the EZIO2x4. I use the EZIO2x4 to control a WaterCop solenoid system. With the MobiLinc app I can send the WaterCop an on or Off command from my Iphone. Now, with the program you suggested I have it send me a confirming text message that the WaterCop did indeed turn On or Off. That part is satisfactory. The WaterCop is also triggered at home by leak detectors. When the WaterCop changes state it is wired so that EZIO inputs 1 and 2 change. Using the administrative console I can query the EZIO2x4 and detect these changes. I want the ISY to send the notification whenever these changes occur. The program as is does not do this. How do you have the ISY continually monitor for such changes?
  12. I need help writing a program that captures a change in the status of an input on an EZIO2X4 and sends an email notification.
×
×
  • Create New...