-
Posts
5518 -
Joined
-
Last visited
Everything posted by paulbates
-
If you have 100% dual band, you probably don't need access points. The caveats are if you have isolated insteon devices where RF doesn't reach, or a few SB devices at the far end of a circuit that powerline signals can't reach. I have examples of both of those at my house. Isolation can mean its far away distance wise, or that there is something noisy in the circuit or metal blocking rf between things that need to talk. A great example is metal jboxes, mine do a great job of focusing / limiting rf. Right now there aren't software tools that are easily used to spot signal performance of individual insteon devices at a level that would allow investigation,, eg. these devices always need an extra hop to get a signal to. Its guess work, and individualized to each unique house that its in. Or dig through a lower level log, device by device on a regular basis. My approach is to manage to the communication problems that present themselves, and not worry about it further.
-
Chuck It is their own server, however its recommended not to use it. It can work good for long periods, then there can be delays. I use Google fwiw Paul
-
Hi Michel / Xathros I would love a sample/example line to follow if that's possible. Paul
-
Chris The specific file is here Its good to book mark the general location for the updates, the different versions are all filed together here on the forum, some are pinned, some are not and you have to scroll to find the specific version. The first post of every version, Michel posts all of the necessary links, including the download location for the UDI location for the UI. Let us know if this got you backed up and on to the next step. Paul
-
Chirs The UIs and firmwares are matched, you should use the same versions of each. I would start with downloading (or retrieving a copy if you have it) of 4.2.7. Use that UI and try it again. Also, be sure you have access to the drive you are saving to. That seems an unlikely cause but possible. Paul
-
Not sure. Costco is cleaning out its 3s, they will send a few non pro 3s to the stores in in the midwest in a month or so with the type cover for $600. I'm contemplating that vs waiting for the non pro 4. I've researched both and the non pro with its atom processor is the right one for my requirements as well. The beauty of costco is that if I don't like it, I can just take ti back and be done with it, so I might go ahead and try the 3 and see if I like it. Paul
-
I've reported the additional post to the moderator, with a very specific recommendation of what to do about it.
-
You can use either one. An ISY program can control the garage lights If garagecontacts turn off (Vs turn on, an ISY program can monitor either state for either device) Then set garagelights on Wait 15 minutes set garagelights off
-
Java apps are active and everywhere in corporate america, especially backend uses like interfaces. The large body of certified offshore java resources makes it hard to justify rewrites in something else. Java is not going away anytime soon. I am hanging out for the surface 4 release next month as my new travel tablet that will be able to run the admin console.
-
Stop. This is conversation is no longer helping anyone.
-
The discontinued devices and icon switches should not inherently be a problem, they should be upwardly compatible. I wouldn't worry about that. The four click method could get tricky when fast-on (double clicking the switch) is already in the mix. Each person will input their clicks differently. I would explore other, more controlled approaches. You could have him call our text you when he's around and you use a phone app like mobilinc to unlock it when needed. Another possibility: When I used to sprinkle during the day, I gave my lawn guy a remote to turn the sprinkling programs off if they were going when he arrived. But he can be here every week during summer and fall. You could do a similar thing, give him a remotelinc to let himself in and lock on the way out.
-
Quick Survey on ISY (5 minutes, $10 Amazon Gift Card drawing)
paulbates replied to earlenceferns's topic in ISY994
Thanks Earlence! Its good to see academia take interest in HA, and security is a great place to start. I worked in IT at UMMC and familiar with UofM's dedication to security and pioneering efforts in the internet we have today. We would certainly like to see what results you are able to share when they are ready. Paul -
IE is still under the W10 hood, you find it by typing Internet Explorer in the search box next to the windows icon on the lower left. Its now a "Windows Accessory"! You can pin it to the task bar if you still want it around. To the point made by others, I download the java app one time from the link given on the version release page, and run it directly,
-
Quick Survey on ISY (5 minutes, $10 Amazon Gift Card drawing)
paulbates replied to earlenceferns's topic in ISY994
Hi Earlance, I took the survey... UofM is down the road from me, I worked at UMMC in IT in the past. I'm curious, could you tell us a little about the class, and what point of view the survey is looking to explore? Thanks Paul -
Ryan What happens when you use the physical on buttons on the lamplinc to turn it on and off? Paul
-
Do I have to write a program to query for "not responding?"
paulbates replied to ryanmead83's topic in ISY994
Insteon communications are stateless, meaning there is nothing keeping an eye on devices outside of normal communications (and the 3am all device query). You'll need to write a program to query the device at a threshold you can live with. I really recommend against query all devices outside of the the 3am checks. Its a lot of traffic load on the insteon network and could have performance and other undesirable side effects. I have found very few cases in almost 10 years of insteon use where this is a problem, and the root cause was needing to address communications problems by adding dual band devices, or filtering certain appliances. The case I do query is my garage door, I have a program do a query after a keypad key in the house is pressed and enough time goes by that the door should be down. Its more of an operational check that the door didn't strike something on the way down and stop. I also check my first alert smoke bridge more often. The point is, I would focus on making sure your insteon network is healthy and address that, and use queries only where there are safety or other specific concerns. -
I have the ancestor to this intermatic unit from home depot, its been in service for 14 years. I attribute the few insteon/x10/electronic losses I've had to this unit. The difference between the two units is the amount of coverage insurance you get, $10k for 5 years vs $7.5k for 3 years. I would always have one of these. There are a number of brands, types and models that you should investigate. This, at a minimum, works well. Paul
-
Hi Calberrt One way is to make these modifications. You'll need to add a state variable (not integer) called dog_out, to keep track of whether the dog is in or out. The 10 second wait and setting the variable will keep the second program from triggering when you first let him out until you close the door after letting him out. Otherwise it will turn the light off right away when you let him out. Use a wait value that is reasonable for how long you would have the door open to let him out. These programs assume that you open the door, let him out and close the door within 10 seconds. If you let him back in within 10 seconds it might get confused. I know my dog is flaky about how long he's out. There are more potential program safeguards, like the first program turning the lights off after 10 minutes as a safeguard. However, if this is a doorwall with a screen, and you keep it open after dark in milder weather, that will get tricky. Backyard lights - Dog out If Program 'Dark Outside' is True And Control 'Sliding Door Open' is switched On Then Set 'Backyard Keypad' On Set 'Landscape Lights' On wait 10 seconds $dog_out = 1 Backyard lights - Dog in If Program 'Dark Outside' is True And Control 'Sliding Door Open' is switched Off And $dog_out = 1 Then Set 'Backyard Keypad' Off Set 'Landscape Lights' Off $dog_out = 0 I would also consider creating a scene for your keypad and and landscape lights, but after you get a solution for your initial requirement worked out Paul
-
Hi Michel I'm trying to compare my requirements to the portals capabilities. A couple of questions: I access a single ISY remotely. I use port forwarding now, and looking changing that to using my routers VPN server capability, so that I can access other things on my network. I always use a well known, trusted system from the internet to do this. It doesn't sound like the portal does much for these requirements? Does the portal provide any V5 capability in terms of exposing nodes outside of the lan environment, any additional capabilities there? Thanks Paul
-
So after thinking about it, you might not have to use toggle mode. I've never used non-toggle mode, but maybe sending it an off will turn it off. It's a fairly easy experiment to try. Depends on how if affects the functionality you want, and what the off does. . I've had the scene thing explained to me before, but I don't recall the specifics. The reality is its not that hard to, so I've "accepted the thing I can't change"
-
If its set for non-toggle on, then then all it can do is send an on. I would try these 2 changes: Set it for toggle mode Adding to what oberkc said, add a statement to turn Living room F off at the end of the program. You'll need to create a scene and add living room F button to it, and switch that off. That will turn off button F, and the program should no longer be true, solving both problems. The button would be off, you press the button The program runs, The program turns the switch back off
-
So you guys better hurry before Scott Walker builds the wall between the US and Canada
-
Ironically the X10 PSC01 did/does a better job sensing for me than the IOlinc. I had several sensors connected to PSC01s in my x10 days that made contact just fine. On the iolinc, I got the glow. I'm not handy enough with electronics and eventually gave up.
-
Hi Ed You can do these things with the right HW and a few simple ISY programs. You also need to use ISY feature under the configuration tab, Emails/Notifications. The manual discusses this section 3.7 - and - set up a gmail account for this, do not use the Default check box Smoke / CO For smoke / co requires 1 or more first alert "One Link" detectors and an Insteon Smoke bridge. You link the detectors together and test per the directions with the First Alert One Link. Then follow the directions to link in the Insteon Smoke bridge. And also add the Insteon Smoke Bridge to you ISY. (It has to be a First Alert that says One Link on the case) The program is simple First Alert CO Detector - If Control 'Security and Fire Alarm / First Alert Smoke Bridge / First Alert Bridge-CO' is switched On Then Send Notification to 'Paul' content 'CO Alarm' Else - No Actions - (To add one, press 'Action') The notification can be one or more email addresses. Mobile providers have an email account that will send to text, check your provider. Follow the same pattern for Smoke Leak sensor Same pattern as above. Buy an insteon leak sensor., link with ISY. Write a similar program that sends specific notification customizations... washer leak, basement leak, etc Garage door Same pattern as above. Setting up the contact sensor and iolinc is a little more involved. You may want to buy the insteon garage kit that comes with everything. You link it to the ISY. You write a program, and it could be more complex. You could have one program each for up and down. Or, you could have a program that waits X minutes when the door is put up. If the door does not go back down in the specified time, send a message Garage door left up If Status 'Garage / Door Sensor' is On Then Wait 30 minutes Send Notification to 'Paul' content 'Garage door left open' Else - No Actions - (To add one, press 'Action') If the door goes down within 30 minutes, the program terminates, and no message is sent. I think mobilic tells you the status of the door, up or down. I'm not sure how to handle the "down only" requirement. Make sure that phones require a password to access? This isn't step by step, but I think gets you started. You may want to do this Set up a gmail account for your house and configure emails and notifications Write test programs to make sure your alerts work Then make each topic a different project and do them individually..e.g Smoke Leak Garage door There are several different learning curves in here and I can tell you from my experience its easy to try to much at once. Paul
-
It's a .net app. Runs native on windows, runs on mono on a raspberry pi. Search for venlink on the main forum page. Io_guy writes a number of these types of apps and supports them very well. He's already looking a isy v5 versions Paul Sent from my iPhone using Tapatalk