Skip 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.

Xathros

Members
  • Joined

  • Last visited

Everything posted by Xathros

  1. Hi Gregg- Thats very much the same as my setup. I agree - IP conflict is unlikely here. When you get home, unplug the PLM (From the wall) and remove power from the ISY. Plug the PLM back in, wait 5 seconds then repower the ISY and watch for activity on the switch port as well as ISY blue light activity. Post results. -Xathros
  2. Hi Gregg- Power down the ISY again and replug the power. Watch the link/Act light on your switch to see if there is any activity during the ISY startup. If there is, it's possible you have an IP conflict with another device on your LAN. Was your ISY assigned a static address? If so, was that done by hard coding the address in the ISY or by MAC reservation in the router? -Xathros
  3. smokegrub- First, try changing your screen cap to a jpg file. Open it in Preview and save as a jpg. Then you can post the jpg. I have changed my default screen cap to jpg as it saves me a step of converting. To do that: You can change the default file type for screen captures by using a terminal command. Every installation of Mac OS X includes the Terminal application in Applications > Utilities. Most major image formats are supported including PNG, PDF, GIF, TIFF, and JPG, we’ll go with JPG since that is a common type of web graphic: defaults write com.apple.screencapture type jpg Then you must kill the SystemUIServer for changes to take effect: killall SystemUIServer Screen captures will now be saved as JPG files. To change back to PNG, just run through the process again setting 'png' as your type in the first Terminal command. Hope this helps. -Xathros
  4. You are using the dusk-dawn node rather than the motion sensor node. No wonder its not working for you. Each sensor should have 3 nodes (Sensor, DuskDawn, and LowBatt) Change your program to use the Sensor node. The Dusk/dawn node turns on/off when the ambient light level in the vicinity of the sensor has crossed the configured threshold for more than 3.5 minutes. It's doing roughly the same thing you are with sunset/sunrise but based on light level rather than time of day. In no case does the dusk/dawn node send an on/off message in reaction to motion being sensed - thats what the Sensor node does. There is a save button on the event viewer. Once saved, you can open the resulting file in a text editor and copy / paste relevant data to the forum. Hope this helps. -Xathros
  5. Xathros replied to binaryman's topic in ISY994
    Oops! I missed one item: In Safari Preferences, Select Security Tab, Check in Allow Plugins, then click Website settings next to that check box, Select Java on the left and find the ISY url on the right, set that to run in Unsafe mode. Where is it attempting to save the zip file? Make sure its to a location that you have write privileges. Have you installed the Java application to your desktop or do you access the admin console via the browser each time? If via browser, I recommend that your install the application instead. -Xathros
  6. Xathros replied to binaryman's topic in ISY994
    Hi Gina- In Safari Preferences, General Tab, Uncheck "Open safe files after downloading" In System Preferences, Java, Security, add your ISY's url to the exception list. Hope this helps. -Xathros
  7. Sounds to me like the relay in the IOLinc is dying or at a minimum, does not like the cold. -Xathros
  8. Anytime! As always, Happy to help. -Xathros
  9. Hello arndtk86- The easiest way to accomplish this (and what I believe most of us here do) is to remove the motion sensors from the scenes and use ISY programs to call the scenes when motion is detected rather than have the sensors directly in control. This will add about a 1 second delay between when motion is sensed and the lights react. Then, you can either disable the motion program or add additional criteria to the motion program(s) to enable/disable their response. Here is an example program: If Control 'MotionSensor' is Switched On Then Set Scene 'Lights' On Wait 5 minutes Set Scene 'Lights' Off Else Now lets include a KPL button to disable the motion program: If Control 'MotionSensor' is Switched On And Status 'Kitchen_KPL8-D' is not On Then Set Scene 'Lights' On Wait 5 minutes Set Scene 'Lights' Off Else In the above, Turning on the D button on the Kitchen KPL8 prevents the motion program from doing anything. Since you are using Mobilinc to control things, you could substitute a variable for the KPL button and add a program to toggle the variable: Program: MotionEnableDisable (Disabled) Important to disable this or it will just get stuck in a loop. if $s.MotionDisabled is 1 Then $s.MotionDisabled = 0 Else $s.MotionDisabled = 1 You can make the above a ML Favorite and use RunIf as the default action for the ML favorite to toggle the variable between 0 and 1 Then: If Control 'MotionSensor' is Switched On And $s.MotionDisabled is 0 Then Set Scene 'Lights' On Wait 5 minutes Set Scene 'Lights' Off Else Now, if you decide that the delay introduced by using a program is a problem, there is a sneaky way to continue using a motion controlled scene and simulate disabling the motion sensor. I wrote that up a while back here: http://forum.universal-devices.com/topic/14587-motion-sensor-programming-help/page-2?do=findComment&comment=122476 This method is not recommended for a beginner however. Hope this helps. -Xathros
  10. You could use a Switchlinc Dimmer in the box without the load line connected then add a micro relay module in the fan housing and link the two. That might move the click to a location where it won't be heard. -Xathros
  11. Sorry to be late to the party. To answer the original question, I have a program in place to monitor for close failures (usually caused by something left in the sensor beam). I have different programs for opening and closing the doors. I call the following from my CloseIfOpen program: GarageFailNotify - [Not Enabled] If Status 'Garage / Garage Door IOLinks / GD- Dad Garage Door Sensor' is On Then Enable Program 'GarageFailNotify' Wait 20 seconds Repeat Every 10 minutes Send Notification to 'Xathros Cell' content 'Dad Garage Door Close Failure' Else Disable Program 'GarageFailNotify' If the door closes within the 20 second wait, the program just disables itself, otherwise, it repeatedly sends notifications. Hope this helps. -Xathros
  12. Stu- It may be worth reviewing the many posts by ELA during the time he was developing the ELAM. He has provided this community with a great deal of valuable data on Insteon signaling, noise and attenuation. See: http://forum.universal-devices.com/topic/5600-getting-serious-when-comm-issues-strike/?hl=elam That KPL diagnostic tool is a joke in comparison. -Xathros
  13. I have to agree with oberkc on this. Is it possible that the Wait is the last thing you added to the program and it needs to be saved for it to take effect? If not, Right click the program tree and select Find/Replace, Set the Find drop down to "Raw Text" and search for Garage.Alarm and see if there are any other references to this notification. -Xathros
  14. Right click on your notification program, select Copy to Clipboard, and paste here for us to review. -Xathros
  15. Xathros replied to smokegrub's topic in ISY994
    Thats what this thread is about actually. Right click a DEVICE and select disable. It will prevent it from being queried and complained about while it is not present on the network. -Xathros
  16. chrishick- I am following this thread wit great interest. I use iRule to control some of my AV gear right now and do plan to expand to the ISY. This has got me very interested. -Xathros
  17. I don't know what is complex about that at all. If your looking for a plug and play solution, I believe the wireless Insteon stat is the best solution. I have one that I use simply for monitoring the temp upstairs. It's a simple thing to send a notification if the temp is above/below predetermined values. You won't be using any of the stats internal programming. Simply link it to the ISY and use an ISY program to notify if temp drops below your threshold. Of course, if the power and internet are out, then there is no notify. There are some other solutions that just connect to your phone line and have internal battery backup. When triggered, they call out to a few preconfigured phone numbers and play a recorded message to alert you to the situation. These work as long as the phone line does not go down. -Xathros
  18. Hi Jeff- There is a fairly low tech solution to this problem that works well for me: A square (1/2" by 1/2" of white electrical tape placed on the MS lens such that it obscures the bed area. I can toss and turn all I want but the sensor does not trigger till I stand up getting out of the bed or walk into the room through the door. I have the sensor mounted across the room from the bed centered with the bed. The tape is affixed to the lower center of the MS lens. I used a square cut out of a post-it note to experiment with placement before placing the electrical tape. Since the door to my master bath is normally open when it's not in use, instead of bringing the MBR lights on dim, I bring the LED backlight of the Master Bath Switchlinc Dimmer on to 100% for 5 minutes. Normally the backlights are off during our sleep hours. This provides enough light to navigate to and inside the bathroom without lighting up the bedroom and waking the boss. I also set the onlevel for the vanity light to 20% so that if we do turn on the light once in the bathroom with the door closed, it's not a blinding light. Normally, the backlight is all we need though. Hope this helps. -Xathros
  19. Nice! Clean and simple. Why didn't I think of this... -Xathros
  20. Thank you. Order placed. -Xathros
  21. I have one KPLD that failed in this way. Does anyone have a Mouser or Digikey PN for the preferred Low ESR cap to replace with? -Xathros
  22. Xathros replied to bshepperd's topic in ISY994
    Possibly but in my mind it is: DDT ("dichlorodiphenyltrichloroethane") is a colorless, crystalline, tasteless and almost odorless organochloride known for its insecticidal properties. -Xathros
  23. Xathros replied to bshepperd's topic in ISY994
    Dunno what I'm gonna do if SH releases a dual outlet dimmer. Guess I'll have to use DDT! -Xathros
  24. Xathros replied to bshepperd's topic in ISY994
    I do something similar with mine: SLD - Switchlinc Dimmer SLR - Switchlinc Relay TLD - Toggleinc Dimmer TLR - Toggleinc Relay KD8 - Keypadlinc Dimmer (8 button) KR6 - Keypadlinc Relay (6 Button) OLR - Outletlinc Relay OLD - Outletlinc Dimmer DOT - Dual Outletlinc Relay (Top) DOB - Dual Outletlinc Relay (Bottom) ILD - Inlinelinc Dimmer ILR - Inlinelinc Relay MDM - Micro Dimmer Module MS - Motion Sensor TL - Triggerlinc HDS - Hidden Door Sensor BLB - Bulblinc And so on... -Xathros
  25. Xathros replied to bshepperd's topic in ISY994
    In addition to the suggestions above, I have taken to adding a suffix to my scene names: MBR / MBR_Light.scn as in many cases I have a device and a scene with the same or very similar name. Having the .scn extension makes it easy to tell a device from a scene. When setting up variables, it helps to prefix them with s. or i. for State or Integer variables. -Xathros

Account

Navigation

Search

Search

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.