Everything posted by Bumbershoot
-
ISY not (fully) operating
I didn't mean your ISY error log, but the individual Polyglot logs. You'll probably need to fix the certificate issue, in any event. As you migrate to Polisy (especially if you recreate your nodeservers instead of doing a backup/restore) this might not be an issue.
-
ISY not (fully) operating
Have you written any new programs lately that might go into a tight loop? Can you open the "Programs" tab on your ISY to see if any programs are busy?
-
ISY not (fully) operating
I guess the first thing I would do is shut down Polyglot then reboot your ISY. If your ISY functionality returns, then it's likely Polyglot. If it does turn out to be Polyglot, you may need to go spelunking through the nodeserver logs to see if there's any trace as to which nodeserver is causing the problem. Or, you could uninstall and reinstall the nodeservers to see if that fixes it. I don't understand how MobiLinc connected to the portal would effect the ISY, but you could shut off the devices that are running MobiLinc and reboot your ISY to see if anything good happens. If neither of these have any effect, then I'd restore from the last known good backup, leaving Polyglot and MobiLinc off while you do that.
-
Looking for a wireless temp sensor for a fridge
Look at all the data the nodeserver provides. This tag is in my garage in a metal freezer, probably 75 feet from the wireless controller, with no line of sight (the usual walls, doors, etc.) between the freezer and the controller. These things are awesome.
-
Looking for a wireless temp sensor for a fridge
Have a look in the Wireless Sensor forum for ideas. I've used three methods to integrate tag data into my ISY: URL Calling, Kumoapps and finally the Polyglot nodeserver to manage my sensors. All three ways work; you just need to determine which way best suits your needs and skillset. For my 2¢, the Polyglot nodeserver offers the most utility, as the tag data is fully native and available to ISY programs.
-
ISY Programs needing Date variables
On second thought, if you're okay with running a nodeserver, then NodeLink provides "ISY Data" that makes it pretty easy to program date related things. The program below would probably get you Memorial Day, every year: New Program - [ID 00C1][Parent 00A7] If 'Devices / dirNodeServers / ISY Data / ISY Data' Month is September And 'Devices / dirNodeServers / ISY Data / ISY Data' Week is 1 And 'Devices / dirNodeServers / ISY Data / ISY Data' Day of Week is Monday Then - No Actions - (To add one, press 'Action') Else - No Actions - (To add one, press 'Action') Here are screenshots of the data as presented in the ISY:
-
ISY Programs needing Date variables
I'm not entirely sure what you're asking for here, but in version 5.x.x of the ISY firmware, you can save temporal data to variables (see screenshot). As for this, there are two Polyglot nodeservers, Holidays and HolidaysGoogle. I don't use either one, but I do know that the HolidaysGoogle nodeserver uses the calendar of your Google/Gmail account. You'll need to be on the 5.x.x series of firmware to use Polyglot
-
Support Thread: 5.0.16C (ISY994)
I wouldn't downgrade. I had problems with my Schlage BE 469 deadbolt as well. A couple of things you can try: delete it from your ISY (not Exclude) and try a "Z-Wave | Tools | Synchronize Nodes" and see if it comes back with it's proper functionality. I eventually had to perform an "Exclude | Include" on the lock to get it to work properly, but I was able to do that with the lock still in place, and that's due to my having the 500 series Z-Wave board installed in my ISY. I'm not sure if everyone can get this result, as the signal might need Z-Wave + devices all the way to your lock for this to work, I don't know. It worked for me, however.
-
Support Thread: 5.0.16C (ISY994)
I have a Z-Wave Water Cop valve and it has always shown up as a binary switch. In my setup, the status of On = Closed and Off = Open. It does, however, operate very reliably.
-
MobiLinc X (iOS/Android) now supports ISY Portal!
Okay, I've got it and connected to the portal. Looks like that piece works just fine. In iOS, it appears that it uses "pull to refresh" to get a current sync of system state, but it appears that can only be done from the home screen? BTW, nice job of parsing the folder names and adding an appropriate picture for the folder.
-
NodeLink: Raspberry Pi Install Script
@io_guy is, though I don't think he's released an install script for the Polisy as of yet:
-
Support Thread: 5.0.16C (ISY994)
You really should be using the ISY Launcher instead of 'admin.jnlp' See this thread: I believe the devices shown in red can be scene controllers, whereas the devices in blue can only be responders.
-
Newbie.. How to control my foscam(s) in ISY
This iOS app controls my camera just fine. https://apps.apple.com/us/app/foscam/id924381688
-
Is anyone here afraid of Insteon disapearing?
I believe those have been gone for some time, but I’ve never shopped for them so I could easily be wrong.
-
Is anyone here afraid of Insteon disapearing?
I just bought some last month in light almond. They were a bit hard to find on their website, but they were there.
-
Is anyone here afraid of Insteon disapearing?
If this new PLM actually sees the light of day, then I think Smarthome might be indicating that they’re up to something interesting with Insteon. My hope is that they’re not simply placating the UDI/Indigo crowd with this device, but that they’re releasing it as a prerequisite for something new on their end. Ensuring the loyalty of HA early adopters like the folks here is important, but this crowd is also wedded to UDI. I’ll bet that they would like to grow their own ecosystem as well, which the current hub probably can’t manage. https://forum.universal-devices.com/topic/28097-advanced-iot-bridge-interface/
-
Newbie.. How to control my foscam(s) in ISY
I don't think it is. You can control Foscam cameras using MobiLinc, however. For that you'll need a portal or use port forwarding through your firewall. See the MobiLinc website or visit the MobiLinc forum on this website for more information.
-
Newbie.. How to control my foscam(s) in ISY
The portal has nothing really to do with this. You'll need to run Polyglot on a secondary device, such as a Raspberry Pi, and you'll need to be running the current 5.x.x ISY firmware.
-
Newbie.. How to control my foscam(s) in ISY
FWIW, here's a screenshot from the Camera nodeserver. I believe the only control you'll have is to send your camera to preset positions (I don't use that feature, so I can't report on how well it works).
-
Support Thread: 5.0.16C (ISY994)
Good catch. I just got my email notification that all my leak sensors had a missed heartbeat, and likewise, all the values for leak sensors in the AC are blank. I'm running this set of programs: I just re-ran the "then" stanza of the "Leak Startup" program in case it didn't get started properly on startup. I'll be out of town for a couple of days, so we'll see what it looks like when I return. Fortunately, then house will be occupied.
-
Push Variable from Pi to ISY994
You can do this easily using the REST interface of your ISY and the utility 'curl'. Try something like this: curl -u USER:PASSWORD http://192.168.x.xx/rest/vars/set/1/3/16 This will set the value of variable type 1 (INTEGER), variable number 3 to the value of 16. If you were changing a variable of type 2 (STATE), the script would look like .../rest/set/2/3/16. Put that into a script and you're golden.
-
Do I need a 2nd ISY for a guest house?
You'd think that the ISY would be very tolerant, being event driven. The PLM has to be at least somewhat tolerant, given the uncertain/unscheduled nature of the i/o environment it deals with. We're not running polled SCADA systems here. Stuff happens with it happens. I would think that this might come down to something as simple as the availability of buffers in the PLM (just speculation, I have no idea how the PLM actually works). This could be an interesting experiment for someone with the right resources.
-
Do I need a 2nd ISY for a guest house?
Currently, I don't think so, but I don't know, and with the current PLM, it's impossible to know. But, there's a Polisy out now, and I understand that UDI wants to migrate the ISY to it. More system resources equals more links?
-
Do I need a 2nd ISY for a guest house?
- Do I need a 2nd ISY for a guest house?
With the new PLM in the FCC database (4000 links), then this might be practical, provided it works. - Do I need a 2nd ISY for a guest house?