Jump to content

paulbates

Members
  • Posts

    5672
  • Joined

  • Last visited

Everything posted by paulbates

  1. @larryllix, somewhere in the forums you did an exhaustive comparison of TSTATs that covers a number of the ones discussed here and their trade offs. Can you post a link to that? Paul
  2. Dan Node device status can be copied to variables, and variables can displayed in had. That's how I kept my HAD status pages working when transitioning from venlink to Nodelink. Paul
  3. Hi Blake Welcome to the forums! The ISY Portal product supports IFTTT. And, IFTTT supports the Harmony hub. The amazon echo can be connected as well. It probably depends what kind of integration you're interested in... For instance, push an insteon keypad button, and have the hub turn on the tv, etc? Paul
  4. To put one more option on the table, is io_guy's ISY Logger. I think it does exactly what you want and can ship the results to syslog if you'd like. You id the variables you want to track by checking a box next to their name. You do need a separate windows or Raspberry Pi type system to run it on your network Here is a sample of the csv output.. header row definition, followed by values: Time,Day,Month,Month_compare,Day_compare,V_FR_Fan_Cycle_Sequence,V_US_Fan_Cycle_Sequence 03/10/2016 00:12:40,9,3,3,9,29,52 03/10/2016 00:17:43,9,3,3,9,29,53 03/10/2016 00:32:41,9,3,3,9,30,53 03/10/2016 00:37:44,9,3,3,9,30,54 03/10/2016 00:52:41,9,3,3,9,31,54 03/10/2016 00:57:44,9,3,3,9,31,55 03/10/2016 00:59:58,10,3,3,10,31,55 03/10/2016 01:12:43,10,3,3,10,32,55 03/10/2016 01:17:46,10,3,3,10,32,56 03/10/2016 01:32:43,10,3,3,10,33,56 03/10/2016 01:37:48,10,3,3,10,33,57 03/10/2016 01:52:45,10,3,3,10,34,57 03/10/2016 01:57:48,10,3,3,10,34,58 03/10/2016 02:12:46,10,3,3,10,35,58 03/10/2016 02:17:49,10,3,3,10,35,59 03/10/2016 02:32:46,10,3,3,10,36,59 03/10/2016 02:37:50,10,3,3,10,36,60 03/10/2016 02:52:47,10,3,3,10,37,60 03/10/2016 02:57:51,10,3,3,10,37,61 ..... Paul
  5. Thanks Michel!
  6. There is now an alexa skill for the ventstar T5xxx through T7xxx series thermostats. These can aslo be controlled by the ISY using Nodelink/Venstar. ISY programs can be aware of changes and make them. http://venstar.com/smart/alexa/
  7. GT I disabled notifications some time ago. Folks have been catching interesting opportunities from SH on amazon... recently got a plm delivered for $35, and just recently 2 motion sensors for about the same price. To your point, they have been becoming x10.com a little more in the marketing/spam dept, each year that goes buy. Paul
  8. I'm going to have maintenance done to my sprinkler system and will likely be out of town when it happens. My project is to create a simple web page to turn my 14 sprinkler zones on and off, and serve access to it through the portal. I've shut all port redirection off on my router and don't want a solution that requires back tracking on that. I've kinda painted myself in the corner with options and the simplest, safest way to proceed Access / security: I think I should create a separate guest portal account with a separate key for accessing devices. This creates a separate key, so I don't give away the key that allows access to things I've created on my main account. I'll change the password for the guest account after the work is done....(?) Web page: Create a simple single page with a set of on/off links for each zone. Option 1: place that page on the ISY and provide a link through the portal (albeit ugly long link) to the contractor, via the guest account, to use from their phone. I've used this method for my sprinkler work in the past. Option 2: host the simple webpage on the internet somewhere at an address that's a little easier to remember. I could make an easier link for the contractor to access. Though that link wouldn't give away the guest key, the zone on/off links would and the page would remain "out there" on the internet. Any alternatives, other suggestions? I don't want to get in to figuring out apps for contractors phones, and would love to avoid giving them a tablet, etc to use. Web keeps the delivery model simpler, I believe. Paul
  9. if you have on/off buttons controlling a light via a scene, you should be able to "press and hold" the on button for the light to brighten, and "press and hold" off to dim. It will be in finer increments than 25/50/75/100 edit.. If its a CFL load it will be hard to impossible to know if what I suggested works Paul
  10. Great, glad its working. Thanks for reporting back Paul
  11. I think your goal is to control these lights remotely, together, via a phone app? If yes, than that what needs to be addressed. It still involves a scene. But instead of of controlling the switches with the app, control the scene. Set up the scene, and control the scene remotely with your phone. I have the Agave android app, and I can add the Scene to Agave and control separate switches in unison, together. All related lights an switches turn on, turn off and dim in unison but controlling a single scene control in agave. Paul
  12. Ok, I see what happened. When the lights get turned on it makes the program false and it terminates. The way to solve it is to have 2 programs: Once the second program is started, it will run all the way through Program 1 If Status 'Garage Lights' is Off And ( Control 'Garage Door - Left-Sensor' is On Or control 'Garage Door - Right-Sensor' is On ) Then Run program 'program2' (Then) Else - No Actions - (To add one, press 'Action') Program 2 If No Conditions Then Set 'Garage Lights' On Wait 2 minutes Set 'Garage Lights' Off Else - No Actions - (To add one, press 'Action')
  13. Are you sure it didn't pop up at the root level of Main, e.g not in the folder? Paul
  14. There's a fix on the way to "un-set" pump mode. For now, delete the ezflora, factory reset it and then add it back in. To factory reset an ezflora, unplug it for at least 5 seconds. Press the SET button while plugging back in. Continue holding SET button for 5 seconds and then release. Paul
  15. Hi, sure Status is the actual state the device is in. Control responds to the device actually being turned on or off: If the garage lights are on, their status is on If the garage doors are activated, the control statement responds to that act. That's what I think you intend for your program, after either iolinc senses/activates, turn the lights on for 2 minutes and then back off. There's an opportunity to enhance this with a scene, let's see if the suggested changes work first though Paul
  16. I'd switch from 'if status' to 'if control' for the iolincs only. Them being a status of "on" and the light being set off is starting the program over again. Also, put parens around the two 'if controls" If Status 'Garage Lights' is Off And ( Control 'Garage Door - Left-Sensor' is On Or control 'Garage Door - Right-Sensor' is On ) Then Set 'Garage Lights' On Wait 2 minutes Set 'Garage Lights' Off Else - No Actions - (To add one, press 'Action') Paul
  17. Then it would be the program statements mwester listed, but instead of taking device action, set a State variable: $GarageDoorActivated = 1 when its in process of moving, and = 0 when its not. Have programs activated based on that variable change. I have a "layer" of variables like this that can be mixed and matched for various automated activities; sprinlers Paul
  18. USe the ISY to create a new scene by using the 'New Scene' menu option at the bottom of the 'Link Management Menu' (next to 'File') Use the mouse to 'drag and drop' each switch into the new scene you created. When asked, make each switch a controller. This is the preferred way to do it, and not have to rewire. Paul
  19. Agreed Teken, ADR is a 'problem focused' approach that heavily penalizes non-business customer for unpredictable demand peaks. I've learned to live with it under "interruptible" service we've had on our A/C for 25 years. The reality is that the demand peaks rarely happen that shut off our A/C... for very cheap power always on that meter. If you've seen UDI's proposal for RATES in a recent post, its turning the business model inside-out by not trying to manically solve it by measuring all of the details. Paul
  20. Hey Teken, 3 reasons Lifestyle, as you suggested. We have a lot going on, an timing the chores to appliances to an arbitrary schedule did not go over well. Especially when the highest rate days are not predictable. DTE does not support AMI/ADR. I got the 9941ZS hoping to automatically control lights, appliances and HVAC based on automating the Demand Peak notifications. After over a year of persistence, I determined that DTE simply won't allow me to configure the ISY to poll the meter. How do their notifications work? They send emails and texts on demand conditions... .. That went over worse then the above item here... If I'm out of town, my wife is already at work and then get a notification.... Its simply not a manageable, practical solution as implemented here. The pain is not worth the gain: DTE has a combined gas/electric use metric, we're down 41% on that compared to prior years, mostly based on insulation, HVAC replacement/Smart Thermostats and ISY programs. While some of that was climate based, via fewer heating degree days last year vs 2014; it was only ~12% of the difference. Our energy costs are down and the projects are paying for themselves... 10% more of that bill is now not a big a number comparatively. We also averaged 15% rebates back from DTE on the investments in HVAC and Insulation projects; so they'll pay off sooner. I'm now hoping the the RATES program UDI is proposing catches on and something like that could be offered here. Probably out in the future a ways and I'm on my own automation wise. Paul
  21. Teken The higher rate is only applied on demand peaks, and there are a fixed number of those the POCO can impose a year with these programs. They try to steer you to run appliances like dish washers, washers and dryers, off peak. You don't know for sure when the demand peak will be called, but generally the hottest business days, during the day. We have that option in SE Michigan. Here is an example of how the DTE program works. Look under Dynamic Peak Pricing. They indicate 10% savings versus the traditional program. They can call the higher rate up to 20 times a year, total of 80 hours. I have the smart meter and their app to measure use, but do not participate in the variable rate program. Paul
  22. Hi Ron Yes, you can. My suggestion is to make a back up of your ISY first, and name it "pre trigger schedule deletion", something that will help you know where to go recover them in the future Paul
  23. Mark I'll support that for sure. I keep saying I'm done implementing keypads, but... As a suggestion, the requirement could be to add menu options when the keys are grouped under Main...Add menu options on the right-click for alpha order, or native (A-B-C) order. Just a thought Paul Paul
  24. Is Comcast your ISP? I live in the metro Detroit area. Comcast recently swung our IP address to something completely different: It was 63.x.x.x its now 24.x.x.x They must have done it mid morning as my work vpn went nuts for no reason. When I reversed IP'd it , I showed up as Boston, but now its correct. My ISY was ok because I used google maps and manually entered the longitude of my property, US and Canada, daylight savings -5 Paul
  25. I understand your dilemma. 3 of mine are in direct view of the computer and I turned their scenes on and off to see which one. The others I wirenuted a cable with a plug, set them up at the computer for full functionality, then go install in their final home. One other idea to do at the beginning is to add prefixes to the key names at configure time: A-Lights, B-Garage door, etc. The AC alphabetizes the devices as they're renamed and that's when they move out of order Paul
×
×
  • Create New...