Jump to content

MrBill

Members
  • Posts

    4674
  • Joined

  • Last visited

Everything posted by MrBill

  1. I'll suggest a couple of improvements to the programs: First it should be noted that when the variable is created it should be a State Variable. Using an Integer Variable would not trigger the second program I don't know how fast the AQI is updated but to prevent repeated notifications I would break the first program above into two if AQI > 100 then high_aqi = 1 and if AQI < 97 then high_aqi = 0 then for the second program: if high_aqi = 1 then send high_notification else send low_notification
  2. Recreate it: Query All - [ID 0002][Parent 0001] If Time is 3:00:00AM Then Set 'ISY' Query Else - No Actions - (To add one, press 'Action') Factory Query Program
  3. Correct, if you add the z-wave board the ISY becomes your z-wave controller. Adding the correct Wall-outlets builds out your mesh. if starting out fresh, make sure everything you buy is Z-wave+ (i.e. "plus" not just z-wave).
  4. I'm not using the micro module. The top switch in the program is a 2477D inside the barn door that is wire just like a single pole switch ahead of a flood light.. Pre-home automation it was just a plain old single pole switch, that controlled a motion light. The other 3 "switches" are actually buttons on 8-button KPL's. All 4 of those devices are Scene Controllers. When any of the 4 are turned on, the scene turns on which provides initial power, then the program runs which turns the scene back off for one second, then back on. This exactly mimics what would happen in a non-automated situation. In normal operation someone would "flip the switch" on and the equipment defaults to motion mode. If the person wanted "hold" they would Flip On, Flip Off, Flip On.
  5. I used a cheap standard motion light, the old style motion head with LED floodlights. One of the "features" of the pre-home-automation motion sensor is the "hold on", typically the feature is activated by flipping the switch off for 1 second then back on. then I added this program: Barn Flood Motion Override - [ID 002C][Parent 0001] If 'OUT Barn Motion Floods+#' is switched On Or '{hide}DN Slider Middle / {hide}OUT Barn Flood' is switched On Or 'OUT Upper Deck Fans+# / {hide}Barn Flood' is switched On Or 'OUT Playroom OH Door+# / {hide}OUT Barn Floods' is switched On Then Set 'OUT Barn Flood' Off Wait 1 second Set 'OUT Barn Flood' On Else - No Actions - (To add one, press 'Action') If any of the 4 switches are turned on (one of which is ahead of the motion the rest are scene controllers) then It's turned off and back on, thus in hold mode. If we actually want to use Motion mode we use Fast On or double tap. (the program was once the other way around Fast On for override more, normal on for motion--but we don't use motion mode too often anymore tho, because either door opening also turns that light on).
  6. If your This does for sure sound like an old version of the admin console on the computer with new firmware in the ISY. Follow the instructions in the first post of this thread to use The Launcher: The launcher insures that your admin console version matches the firmware of the ISY.
  7. There is no functionality to comment out or stop a line of code from executing. Comments can be Moved Up just like a line of code. I don't have the need as much anymore due to increased comfort level, but one thing I did in the early days when I wanted to try something was make a copy of the program and disable the original then make changes to the copy for testing.
  8. It does sound like you have an ISY that does not have the Z-wave board inside. It is upgradable. You would purchase the Z-wave board from UDI and install it in your ISY. That said, I would agree with others here, if this will be your only Z-wave and you don't plan to add more Z-wave then Install a wifi thermostat like the ecobee that has a Node Server for ISY control.
  9. Also don't use 5.0.16B instead get 5.0.16C is by far the most stable 5.0.16. Also the easiest way to open a ticket if your unfamiliar is to email support@universal-devices.com
  10. In a program: Set the 1) Action to Variable, 2) pick a variable, 3) = is the default, that's fine. 4) Press the little circled play icon until you reach your Node Listing, 5) use the drop-downs to choose what to put into the variable..
  11. Same. and I have a reservation set in the router so I can always find it. We probably should also be asking OP what router they are using as maybe we can give hints on how to login to the router interface to find the address.
  12. Maybe the most basic question, if the system had a previous owner.... Is your ISY plugged into the router?
  13. You would use Adjust Scene for that. Assuming the the motion is a controller in the scene you would choose: Scene: your scene Controller: Motion Detector Set: Device that needs adjusted So you would need a program for the fan If Control (name of 1st scene controller) is switched ON or control (name of 2nd scene controller) is switched ON or (more scene controllers, but not the motion itself) is switched ON or Temp > 72 then Adjust Scene A / Motion Detector / set Fan On else Nothing and then another program to reverse that: If Control (name of 1st scene controller) is switched OFF or control (name of 2nd scene controller) is switched OFF or (more scene controllers, but not the motion itself) is switched OFF or Temp <= 72 then Adjust Scene A / Motion Detector / set Fan OFF else Nothing
  14. From the Wiki: You can use any power supply that outputs anywhere between 5 volt and 30 volts,center positive, 2mm barrel connector.
  15. You need to set the responders ONCE for each controller, there is no need to use "adjust scene" from a program unless I'm totally misreading what you are trying to do. Let's say we have Light A controlled by switch A, its in a scene with Switch B (no load connected), and Button C on a KPL also as controllers, and motion detector D. On the Main Tab of the Admin console down at the bottom you need to configure the scene 5 times! The root level of the scene and all 4 Red controllers that appear below it. You want the scene to work the same way from everywhere so set all 5 of those controllers the same way. Done. Now it doesn't matter what turns the scene on it will be the same. Conversely, lets pretend Light A is in the bathroom and Button C is by the bed, in that case you may want all the other options to turn the light on bright, but for button C you can set it so that when light A is turned on by button C it only comes on at 15%. When do you use "Adjust Scene"? Let's pretend light K is accent lighting Normally controlled by KPL button E as a controller. We want Button E to turn on at 80% during the day, but after Sunset we want Button E's on value to instead be 30%. So we would create a program that "Adjust Scene" at sunset to change how Button E acts as a controller. Then at some other time we want it to revert back to Bright, let's say Sunrise. If From Sunset to Sunrise (next day) then Adjust scene Kitchen Accent / Button E light to ON Level 30% else Adjust scene Kitchen Accent Button E light to On Level 80% This program Runs twice at Sunset where the THEN clause Runs, it Runs again at Sunrise where the ELSE clause runs. This program does NOT change the level of light whether or not the light is on or off when the program runs. What it does do is REPROGRAM Button E so that when button E is turned on it will have the appropriate ON level for that time of day. You could add additional lines to the program to adjust the actual light level, or more likely use a different program that only adjust the level of the actual light if the light is on. CAVEAT: Since you mentioned "Adjust Scene" and Motion Detector in the same sentence: THE IS A BUG to be aware of: As far as using adjust scene with a motion detector...... What version firmware? and is the Motion Battery powered or powered by external power? In version 4.x firmware there's no problem adjusting scenes. In version 5.x if the motion detector is battery powered there is a bug: You can't use Adjust Scene if a motion detector, or any battery powered device, is a Controller in the scene. (the problem goes away if the motion is USB powered.)
  16. You should in fact have the Factory Query All Program... Here it is if you need to recreate it: Query All Copy - [ID 00FE][Parent 0001] If Time is 3:00:00AM Then Set 'ISY' Query Else - No Actions - (To add one, press 'Action') Factory Query Program The Factory query program allows your ISY to get back in synch every night if anything was missed due to powerline noise or other signal corruption. The ISY is always listening, but manual dimming or brightening can overflow the PLMs buffer. If you need the ISY to have the exact correct dimming value, watch for Fade Stop and then wait a few seconds and query the device. It's really not an ISY bug so much as just how Insteon works, communication over the powerline is slow.
  17. TH This is an overly complicated example using Light percents stored in variables and Adjust Scene to adjust scenes. Do you need to changes levels in the scene? Note that the ISY as a scene controller can be set for one set of values, yet a switch as a scene controller could have another, and the motion as a scene controller another.
  18. I have a bunch of programs for a specific need. (Specifically being able to set specific dim levels of a Scene from Alexa). I found that if the Dim Level was set or subsequently changed manually from a scene controller the ISY never actually would get the changed value % correct. I worked for awhile at getting it correct (my Insteon system doesn't generally have noise issues). In the end I decided for my programs purposes I didn't care of the ISY knew the exact correct value, instead when my programs see Fade Stop they store the value 101 in a variable which I call "ON, specific level unknown). (value 0=off, 1-100 = dim level that Alexa wants to set). I did discover that you could add a Wait for a few seconds (to pause and wait for the powerline to settle down), then add a query to the program to update the ISY, which would get the value corrected in the ISY. I didn't use that method in the end however.
  19. MrBill

    Garage sensor

    If it works sometimes it doesn't sound like a bad iolink, it sounds like line noise. When I trouble shoot line noise I turn off the majority of the circuits in my panel and test. With Insteon tho all but those two circuits (ISY and Iolink) might be too many at once. Keep in mind if those are on opposite phases, you'll also have to leave on enough dual band devices for the signal to jump to the other phase. When looking for a new noise generating object, that just started causing issues, I tend to identify the ISY circuit and the problem circuit, (and the circuit with the router if different that the ISY circuit). Then unplug or airgap everything else on those two circuits. Then I turn off every remaining breaker on half the panel. Noise still there? Turn that half back on, turn off the other half. Noise gone, turn back on half of the breakers that are off? Noise gone or present... continue until you find the offending circuit. Then go on a hunt of devices on that circuit. .... of course before you do all that, ask yourself if you've plugged in or installed anything new around the time the problem started. (in my case that recently was a new cordless vacuum charger.)
  20. I looked for the specs on Intermatic's site, they don't list a minimum load but that would be my concern. I'm thinking about a case where we replaced a photocell for a customer many years ago. The total wattage in the fixture was like 25W, but the replacement turned out to have a 40W minimum--- we figured that out after several days of head scratching. Unless you already have those parts laying around, for the price of the photocell and micro module you might consider something different, like a motion sensor with a light sensor, or a (CAO) WirelessTag with a lumen sensor.
  21. According to the Wiki V4.3.26 is the minimum version for the portal. As noted use The Launcher to ensure that your firmware and UI versions match. I'm not familiar with that message: did you follow the instructions here: https://wiki.universal-devices.com/index.php?title=ISY_Portal_Installation_Instructions Launcher instructions are here: https://wiki.universal-devices.com/index.php?title=Main_Page#Installing_the_Admin_Console_Icon_on_Your_Desktop or here:
  22. You need the serial version. And at the moment they are out of stock everywhere. Rumor has it the first of the year they should be back, but I've not seen that offically posted anywhere.
  23. I believe that total nodes also includes scenes: 79+294+0+74+3=450 BTW, thanks much for creating this nodeserver... I never could count this stuff accurately before.
  24. Which brings up a good question, since program folders do count towards total number of programs (300 for non-pro, 1024 for pro) are they included in the program count?
  25. I upgraded to 0.1.1 this morning. I closed admin before upgrading. Numerous tries of Restart, query, rediscover, update profile, closing re-opeing the admin console never got Folders to populate. Finally uninstalled the nodeserver and reinstalled and it finally populated.
×
×
  • Create New...