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.

Teken

Members
  • Joined

  • Last visited

Everything posted by Teken

  1. Teken replied to KSchex's topic in ISY994
    Ha - See!
  2. Teken replied to KSchex's topic in ISY994
    You could always purchase those LED dimming stickers. Seems to work well for lots of folks. ========================= The highest calling in life is to serve ones country faithfully - Teach others what can be. Do what is right and not what is popular.
  3. Sounds good, how far is the HDS from the closest dual band hardware device? [emoji848] Also what kind of door (skin) material is being used? Wood, fiberglass, metal? To state the obvious if the door skin is metal expect reduced signaling from the HDS.
  4. Ideally you should create a heart beat detection program along with the low battery alert this would tell you if the device was in range and still alive. The low battery threshold can be adjusted for best use case and threshold level you feel comfortable. It's quite unfortunate you seem to be on site to complete these HA tasks only to be blind sided by a few gotchas. ☹️ You can still remote in and craft the programs now however so all is not lost! [emoji851] ========================= The highest calling in life is to serve ones country faithfully - Teach others what can be. Do what is right and not what is popular.
  5. Glad you figured it out but you need to confirm this is so . . .
  6. Besides purchasing the hardware you will also need to activate the Z-Wave module for $1.00.
  7. Yes, there has been a ongoing upgrade package for those migrating from the 99 to 994. You can simply go to the UDI sales page and go from there. NOTE: Technically if you have the *Network Module* you can still use Amazon Echo via (roll your own) using 3rd party software and middle ware like a RPi. Its free besides the initial outlay for the RPi but it allows you to reduce your on going costs for the portal.
  8. [emoji23][emoji12][emoji13]
  9. In case you the OEM power supply can't be found any DC transformer that outputs from 5 ~ 30 VDC is fine.
  10. Teken replied to Jay M's topic in ISY994
    I believe most places indicate the command and control must reside in the hardware. So Stu may be correct the ISY Series Controller may not be considered native in command and control. Then again, I highly doubt any building inspector would know the difference if they walked into a room. Most of them would see the MS and call it good and I have never seen a inspector follow up and check to see if the lights actually operated on-off.
  11. Teken replied to mmoore99's topic in ISY994
    The API & Firmware are not the same when speaking about this topic. The firmware UDI states in that specific thread pertains to the ISY which contains the API commands to include the Alert Module. As you correctly noted there has been no mention in any forum thread that UDI has obtained the API for the newly released Insteon siren to include it the ISY firmware. Clear as mud?
  12. Teken replied to Jay M's topic in ISY994
    Hello Jay, The following programs are examples I use in my home for various lighting fixtures and use case. Some of them do not have motion sensors attached / linked to them for obvious reasons. My reply is to simply offer you a general sense of how the code is crafted and the logic that follows. You may take any portion and use them to your use case. This program is to monitor a large LED tube ceiling light. Pressing the button will invoke 30 minute timer. If the switch is double tapped (Fast On) it will over ride the 30 minute timer and the light will remain on indefinitely until the user presses the off button. Ceiling 30 Min Timer - [iD 0024][Parent 00C0] If Control 'Ceiling Lights' is switched On And Control 'Ceiling Lights' is not switched Fast On Then Wait 30 minutes Set 'Ceiling Lights' Off Set Scene 'Ceiling Light' Off Else - No Actions - (To add one, press 'Action') This program monitors the laundry room and for obvious reasons I didn't want the lights to turn off while anyone was moving around. But the system is programmed to turn off the lights after 10 minutes of no motion. It should be noted the use of the *Control* function instead of the *Status* function as this determines how the MS will react when it senses motion. Laundry 10 Min Timer - [iD 002F][Parent 00C0] If Control 'Laundry Motion-Sensor' is switched On Then Set Scene 'Laundry Room' On Wait 10 minutes Set Scene 'Laundry Room' Off Else - No Actions - (To add one, press 'Action') This program is a variation of the same (laundry 10 min timer & reset countdown based on movement). This program basically says if the MS senses movement turn the lights on for 2 minutes than turn it off. If I happen to be in the office I don't want the blasted thing to keep turning off and leaving me in the dark. So all I need to do and (Any lay person) would expect is to tap the on paddle position. This will over ride the 2 minute timer and leave the lights on indefinitely until someone presses the off paddle. Office Over Ride Timer - [iD 02C7][Parent 00C0] If Control 'Office Motion Sensor-Sensor' is switched On And Program 'Office Manual' is False Then Set Scene 'Office Light' On Wait 2 minutes Set Scene 'Office Light' Off Else - No Actions - (To add one, press 'Action') This is the over ride program to the above office program. Office Manual - [iD 02D3][Parent 00C0] If Control 'Office Lights' is switched On And Control 'Office Lights' is not switched Off Then - No Actions - (To add one, press 'Action') Else - No Actions - (To add one, press 'Action') As you can see there is more than one way to skin a cat and based on your use case. Any of the above can be modified to suite your needs. But since your intention is the reverse of most peoples use its going to be easier.
  13. Teken replied to mmoore99's topic in ISY994
    Post 13 & 16 from both Michel and Chris allude to the fact they do have the API. But will not incorporate the Alert Module into the 4.XX branch. Regarding the Insteon Siren I don't pretend to know if the API is completely different or the same. No mention from the UDI team has indicated when this new module will be supported or where. If I was to guess it too will be included into the 5.XX branch as 4.XX will be deprecated moving forward.
  14. B.S.G: So say we all . . .
  15. OBerkc, Your like a freaking poet in dumbing things down to the masses . . .
  16. Teken replied to Jay M's topic in ISY994
    Also keep in mind if its programmed correctly any movement will simply add more time. So if you define a safe interval of say three hours. Anytime movement is detected in that room it will simply reset the clock and start another 3 hour (ON) time. No movement from 7:00 AM to 5:00 PM turn the lights off. As a watch dog timer you can create another program that queries the conference room lights. Say you know for a fact no one is ever going to be there from 10:00 PM to 5:00 AM. The system will check and then turn the lights off to ensure no wasted energy etc. One important consideration is to create a program that allows a person to double / triple tap a designated remote or switch to turn off the program.
  17. Larry, I'm going to steal that one from you!
  18. Teken replied to Jay M's topic in ISY994
    Hello Jay, There are several things that can be done but before we even go there you need to define the real world use case of this room. 1. How long will people be in this room? 2. Will everyone be sitting and not moving? 3. Have you considered simply making a program that says turn on the lights for XX hours from X time to X time? Doing so will ensure the highest customer satisfaction. 4. One of the easiest approaches is to program the motion sensor to turn on the lights when ever it detects motion. But have a program to govern what happens from X - X time periods.
  19. Teken replied to mmoore99's topic in ISY994
    This is the most recent thread from both Michel and Chris: http://forum.universal-devices.com/topic/18440-help-is-required-insteon-alert-module-error/?hl=%2Balert+%2Bmodule
  20. Teken replied to mmoore99's topic in ISY994
    I don't recall which thread it was but Michel noted they will not include support for Alert Module in the 4.XX branch. As I understand it they believe there is only two more Alpha trials to go before 5.XX goes into Beta. It was stated 4.XX branch has come to the end and they really wanted to move forward with all the extra features of 5.XX. As always what that means in human (time) terms could be anyone's guess. As 5.XX has been going on for more than two years . . .
  21. Some basic questions if you will: 1. What is the brand and model of this GDO? 2. What sort of sensor is in place for this GDO kit? 3. Have you completed the annual safety checks for the GDO? 4. Remove the I/O Linc and simulate a power failure - what happens to the GDO?
  22. I've read this entire thread and I just have to shake my head . . .
  23. Make sure you leave the remote in its default *toggle* mode and not OFF vs ON only modes. LOL . . .
  24. LOL - I'm going back to my project now! [emoji38][emoji5][emoji851]
  25. As I noted up above those are all great pros of the tag system. LOL - I thought your comment was directed toward me! Use the quote feature damn it! [emoji35][emoji13]

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.