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 jonnyt- Try wget for windows: http://gnuwin32.sourceforge.net/packages/wget.htm Does exactly what you need and from the CLI. -Xathros
  2. silverton38- I have a series of programs that handle occupancy detection for me. Pretty sure they will survive a power outage for the most part. Here is how it works: State mvar for detection delay. In my case 45 minutes, in yours, 24 hours. First program monitors motion sensors and a list of switch try devices. Idea here is in the areas with no motion detection, someone operating a switch says occupied as well. When any activity is detected, the detection delay mvar gets reset to 45 (24 for yours) Second program says if detection delay >0, set detection delay mvar init to detection delay mvar, wait 1 minute (1 hr for you) and subtract 1. This restarts the 1 minuet (hour) timer since the state var changes. The set init is the part that solves for power outages. Set this to run at startup. Third program runs on detection delay mvar reaching 0. This is where you turn off your scene. Then set the delay mvar < 0 to disable till next detection. Prog#1 If motion detected then s.occupancyDelay = 45 Prog#2 if s.occupancyDelay > 0 then s.occupancyDelay InitTo s.occupancyDelay wait 1 s.occupancyDelay =- 1 Prog#3 if s.occupancyDelay = 0 then Set scene MostLights Off s.occupancyDelay InitTo -1 s.occupancyDelay = -1 Hope this helps. My progs are a bit more involved as I'm tracking occupancy statistics as well but this should meet your needs.
  3. Dupe post - see other for reply.
  4. No. I ended up running a Pogoplug with Archlinux to capture logs among other things. -Xathros
  5. Xathros replied to vstolin's topic in ISY994
    Purchased! Thanks for the link. Dunno yet exactly where I'll use this yet but I'll find it a good job. -X
  6. Xathros replied to vstolin's topic in ISY994
    ELA- Sounds like a fun project. Interfacing to the Arduino via EzFlora sounds a bit clunky to me though. I was under the impression that only one EzFlora zone/output could be active at a time. This seems very limiting for what you are attempting especially if you are trying to activate a sprinkler zone and confirm that it's been done via audio output using the same EzFlora. Isn't there an ethernet shield for the arduino? Couldn't you communicate with that via network resources instead and have an unlimited number of commands/voices avaialble ? If not, have you looked at the CAI Web Control board? it has 16 bits of IO (8 in 8 out) and an insanely easy CGI web interface. You could get 255 combinations out of that. Another option is a PogoPlug running ArchLinux to do the audio playback. This requires a USB autio interface for the PogoPlug however. These are very easily addresses via network resources but will require some coding to build the CGI interface. -Xathros
  7. ergodic- Could you clarify if you mean "Low Voltage" or "Line Voltage" by LV ? Thanks. -Xathros
  8. LeeG- Very nice explanation. Thank you. -Xathros
  9. LeeG- Isn't FW 3.3.3 REQUIRED for linking I2CS Devices ? Or at least 3.3.1 but preferably the latest? -Xathros
  10. I wonder if you were sending a message with either a blank subject or body. Either of those conditions have been known to cause trouble. -Xathros
  11. The Auth failure is on send to the SMTP server. Did you enter the Gmail account info for SMTP ? -Xathros
  12. Xathros replied to JMC's topic in ISY994
    I know early on Java 7 had some major issues. AFAIK, they are resolved and Java 7 is now useable. The ISY firmware actually requires Java 7 for HTTPS support within the admin console and dashboard. -Xathros
  13. Xathros replied to aaron's topic in ISY994
    Nope. Just send a message to support with the UUID of your old ISY and the UUID of the new one and ask them to transfer the activation over. No additional charge. -Xathros
  14. Tie in in what way? What is the end goal? -Xathros
  15. Upgraded with no issues. MaxRainRate WB mvar is now populated properly. Both of my IOLinc Sensors are now working properly. IOLinc Options display correctly after a change. -Xathros
  16. Understood. Thank you. -Xathros
  17. Thanks Michel- Looks like an issue with TBird on the formatting. I have been able to sort of correct it be reselecting the character encoding for each received message. It seems to be ignoring the global setting for that. As for subscribing, I think that is beyond my current skill set tho I do plan to dig deeper into that as time goes on. I was trying to work with the simple solution of outputting the data in a csv format via email daily. I see we can test these values with programs but we can't yet assign them to mvars. I suspect once we can assign these values to mvars, I'll have a simple workaround to convert these strings into numeric values. -Xathros
  18. I have a few issues with the WB data variables. Here are some visual aids: This first image is the current data from the admin console. The second is the result of a custom email from the ISY as seen on my iPhone and the third is the same message as displayed in Thunderbird. My issues are: 1) The degree symbol is not formatting correctly in Thinderbird but it does on the iPhone. Is the ISY not specifying the proper character encoding in the email ? 2) Is there a way to eliminate the non numeric data returned for the numeric fields (Temps, Windspeeds, humidity, pressures etc). I would like to log and chart this data along with other environmental data from inside the home but currently I cannot treat this as numeric data. Its easy enough to add the mph or Inches/Hr fluff in the notification if desired. 3) (Already discussed elsewhere-included for completeness) Max rain today returns blank. - Just noticed it is NOT in the current WB data set from the admin console yet it WAS there yesterday. Same WB station. Do WB data points usually come and go without reason ? Thanks. -Xathros
  19. On that train of thought, is there or will there be access to forecast data rather than just current conditions? Thanks. -Xathros
  20. Thank you! -Xathros.
  21. Man i must be losing it. Illusion just pointed out that my sig was showing Mac OS 10.6 earlier today i went and fixed that. Didn't even check the FW version i had listed there. Off to fix that now... Thanks! -Xathros
  22. Sorry I didn't include that in the last post. I'm on 3.3.2 until the next beta is released. Thanks. -Xathros
  23. Hello- I just added the weatherbug module to my ISY994 this afternoon. In playing with the data now available, I have found that the ${mod.weather.rain.ratemax} variable is not working. I see valid data for this value (0.04"/hr) on the Climate tab but when used in a customized notification, nothing is returned - not even a 0. Bug Y/n ? -Xathros
  24. What version of the ISY firmware are you running and what version of Java do you have ? -Xathros
  25. Here are the details from one of my prowlapp resources: I notice that I don't have the authentication header on this one but it still works anyway. Protocol: Https Method: post Host: api.prowlapp.com Port: 443 Path: /publicapi/add Encode Url Checked Mode: C Escaped Timeout: 4000 Body: apikey=&application=ISY994i-Pro&event=Home Mode Set&description=The system is now running in HOME mode.&priority=0\n Hope this helps. -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.