Jump to content
View in the app

A better way to browse. Learn more.

Universal Devices Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

oberkc

Members
  • Joined

  • Last visited

Everything posted by oberkc

  1. Sorry that I was not clear. I was not questioning the logic of WHY you are trying to do it...I intended to suggest thinking a little deeper about the logic of HOW you want to do it. Specifically, HOW do you want to determine whether a room is occupied versus simply passing through. What are your thoughts on this? Motion sensed every minute? Every two minutes? What constitutes "occupied" in your mind. To me, and assuming that all I have is a motion sensor, I would tend to assume that occupied would be based upon regular motion triggers at some time period (and I will assume at least once per minute in this example). To continue to the next stage, I would also reverse the order of your thought process. Rather than thinking in terms of motion triggering a 5 minute wait, then (if "occupied") turn the fan on, what about first determining whether the room is occupied, then (after five minutes of occupation) turning the fan on. Does that change things? Does this give you any ideas? Were this me, I would probably write a program that runs true when occupied and false when not. Assuming an occupied state would trigger a motion detection every minute or less, an "occupied" program could be something like: if control motion sensor is switched on then wait one minute run this program (else path) else nothing If there are detections before a minute wait period, the program will re-trigger and start the countdown again. After a minute of no motion detections, this program would run the ELSE path (and be false). So long that motion is detected at least once per minute, this program remains true (THEN path running) the room is treated as occupied. Given this first program, create a second program to wait for the 5-minute period to start the fan. How about something like: if status "occupied" program is TRUE then wait 5 minutes turn on fan else turn off fan I have not tried this, so you may have to experiment with the correct program steps and syntax, but I hope the logic is clear. Of course, this all assumes that an "occupied" room will cause regular motion hits, which may not be true if someone is simply taking a nap or otherwise not moving around too much. But given the assumption that all you have is a motion sensor, you may have to live with that limitation.
  2. Response to questions: 1...the correct setting depends on your goals and intended usage. I use momentary A, because I want my relay only to respond to ON commands from a keypad button. What you choose would depend on how you establish your scenes between the IOLinc and another insteon controller device, but if you want it to respond to both commands always, choose momentary B. 2...momentary A response to only one command, either ON or OFF. (I would have to refresh my memory on how one choses which command.) Momentary B responds to both ON and OFF commands. 3. I was not thinking that this is a communication problem initially. More on this.... My experience (and recollection) is that the IOLinc relay, when operated directly from the admin control, will NOT respond based upon the momentary or latching modes. The latching or momentary modes are respected ONLY when responding to a scene command triggered from another controller. In my case, commanding the IOLinc relay to be ON caused my relay to be open and commanding it to be OFF causes the relay to be closed. Regardless of momentary mode, commanding the relay to be OFF causes NO response to the garage door. In my installation, commanding the IOLinc to be OFF, directly from the admin console, caused no reation by the garage door, regardless of momentary mode chosen, and regardless of whether the door was initially open, closed, or in motion. Given this, I am unsure why yours would be different. Is your IOLinc a responder in any scenes? Were you commanding the scenes, or the IOLinc directly?
  3. I agree with redridge. I will add that one needs to be careful to avoid having the THEN section retrigger the IF section but, otherwise, it should be as simple as described. Are you concerned only about when the garage lights are manually turned on, or are there other automated cases that might cause your lights to be on?
  4. oberkc replied to keribi's topic in ISY994
    Did you just upgrade to 5.0.15? I recall getting those types of warnings when I went from 4.x to 5.x. I believe it meant that there was some program action there that could not be properly translated to the new software. Hopefully, you can figure out what action is missing.
  5. I assume it works the same as from>to condition. It might be useful if you want something to happen at the FROM time (then clause) and something else to happen at the end of the FOR period (else clause).
  6. If you have a hue hub and bulb, the ISY-994 can be made to control it. Unfortunately, I would consider this a "major programming change". Is this fixture not controlled by a switch?
  7. This surprised me, so I checked my method and found that I remembered incorrectly. In fact, I do set a variable...zero for normal operation and one for when the switch is manually turned on and I want the motion timer to be ignored. I don't recall why I did it that way. Perhaps I learned the same thing you did, but forgot?
  8. yes correct I suppose one could use variables, but this simply adds another layer of complexity. Yes, the override program is a simple state machine. Of course. When your override program runs TRUE, have it halt the body program. If the body program is in a wait state, it will cease waiting. I am not sure I knew that. Interesting. Perhaps having a variable change value for ON or OFF has value, after all.
  9. I believe the answer is NO. Button A will control the attached load and there is nothing you can do about that. Depending on your needs, you could set the ON level to zero, but it would still be controlling the load.
  10. No. Right-click on the program>>>disable. This will keep the conditions, but the program conditions will only evaluate them when called by the other (.cond) program. First, my thoughts were that the .body program would NOT be enabled (thus my suggestion). I do not want it triggering itself by the conditions. Second, once motion is detected and triggers the .cond program, it would call the .body program. (But now that I re-look, I missed something: make sure you call the "IF" path of the .body program, not the "THEN" path. ) This will trigger the evaluation of the .body conditions, which will be false (because .override is TRUE) and, therefore, not start a countdown. One other consideration...what if the motion has already triggered a countdown, THEN you turn the switch on? Do you want to halt the countdown?
  11. A couple of things. First, I would disable shedmotion.body. You do not want that program self-triggering...only run when called from the .cond program. Second, I would get rid of the second condition of the .body program. Since it will be called by the .cond program, the second condition is redundant. Regarding the "shed lights" ...are they a dimmer? If not, then the commands in the third program to turn the on/off are redundant (would they not already be on/off when the program is triggered?). If they are a dimmer, why not simply make the default action 100%-on and zero ramp rate (effectively a "fast on")?
  12. That would work (send notifications), but certainly not affect any motion sensors
  13. I have same provision, at sunrise.
  14. All my lights triggered by motion sensors are on switches. I have programs that, when the switch is manually toggled ON, the motion program is disabled. When the switch is manually toggled OFF, the program is enabled. This is an example of where using a scene between the motion sensor and switch will not work.
  15. I recall, too, that a scene test could fail if one of the included devices triggering a program. If this is a possibility, temporarily disable the program(s) during the scene test.
  16. How do you normally access the ISY? Have you tried downloading a new version of the desktop app?
  17. Still hoping for answers to these questions. If it is an 8-button keypad, the load is controlled by button A. If the keypad powers the light, then the flashing light will cause a flashing button. Is this acceptable. If it is a six-button, then the ON and OFF buttons will alternate when flashing. Is this acceptable?
  18. My gut feel is to do this with a single ISY scene, including all the devices from scene 1 and scene 2. Buttons A and B would both be controllers in the scene. For button A, define the appropriate ON levels for the scene-1 devices. For scene-2 devices (and button B), define ON levels as ZERO (off, whatever). For button B, define the ON levels for scene-1 devices (and button A) as zero. Define the ON levels for scene-2 devices as you want. This requires a program. There is no scene capability that would cause a light to flash. How do you want to initiate the flashing? Pressing button B? How do you want to terminate the flashing? Toggle button B to off? Press button A? Is your keypad six- or eight-button? Is your light bulb powered by this same keypad?
  19. Indeed. Great idea.
  20. Besides suspecting that this is not the response being sought ("only the connected load turns on"), part of the discussion clarified "without linking the big on button".
  21. That would have to be a program. There is no way to create a scene that only responds to OFF commands. Add everything (not including the "all off button") into a scene, all as responders. Write a program: if all off button is switched off then turn off everything scene. else nothing
  22. I did not check, but I wonder if that is the part of the manual that describes the different ways to configure the IOLinc absent a hub-type device...all manually. Additionally, the connections would matter also. What does an "open relay" even mean...If the N/O connection is made, then the N/C connection would be open, and vice-versa. I believe that most of those configuration settings (I am assuming they are talking about the various momentary modes here) can be done via ISY and don't need to be done manually.
  23. Yes, but I wonder the same thing as BrianH...perhaps the IOLinc settings are such that the IOLinc turns off in response to a scene-ON command. Also, scene commands can be more susceptible to communication problems than direct commands from the amin panel. Everything looks correct to me still. If there is something obvious, we are both missing it. I assume that you have tried temporarily removing the COM and N/O connections and tied them together, just to confirm that the lights work, correct?
  24. I do see from the instructions that there is also the status LED, along with the sensor LED. The status LED should apparently be bright when the relay is closed and dim when the relay is open. Is this happening?

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.