-
Posts
250 -
Joined
-
Last visited
Everything posted by CoolToys
-
@larryllix, @dbwarner5, I have set up two programs with the exact same event results as above, one with the state variable reset to zero at the top and one at the bottom. Each setting three lights with 10 minutes in each wait statement. Both work which as a programmer makes no sense. Back to my first question, once a program starts, it should complete. The wait should have no effect. If it did then the program for the garage light should not work but it does. The same program for the stairwell light likewise should go into an infinite loop if that is the case and never solve, yet it too turns off and the state goes to "0" in 10 minutes. I don't get why one of them doesn't fail and I don't get why they both work. The re-evaluation thing is an odd "feature" that doesn't follow standard logic but if that is how the eisy is supposed to work, then why does the program with the variable reset at line 2 work? The only thing I can conclude is that the "reevaluation" isn't happening and once the execution of the "then" statement starts, it completes. I will keep testing and watching to see what it does.
-
@dbwarner5, I use the same method for lots of temporary lighting like "snack walk" or "garage lights", and all work fine. Actually, I don't understand why the logic would "recheck the wait", once a state is valid to start a program shouldn't it finish? And isn't the reverse true that if it rechecks should it start at the top and get stuck in an infinite loop on the first wait line? I'll have to go back and look at the ISY programming manual before I make that change. Still no idea what I did wrong on the bedroom lights. They have been normal for a week, and I haven't changed anything.
-
@IndyMike, Below is where I set sOccupied_Guest_Edit and how I clear it if no one is in there for an hour. There is a recording studio and editing room we use as an emergency bedroom. When someone is in there we don't want to turn the lights off on them. In most cases, that area is off. There is a second "Bedtime" program called "Bedtime_Edit_Guest" that is a copy paste of the bedtime less the lights in the editing room and recording studio. That section hasn't been lighting back up. @dbwarner5, Good Question, the lights in our bedroom are the first thing that come on, hence the reason I wanted to see the logs of what program was running so I can try and figure out what is triggering it. The odd thing is that there are three programs that all kick on, none related and it isn't consistent. I noticed today that one of the "disabled" programs I use to test was no longer disabled. From time to time it looks like things change in the program without my input. I do back up every time I make a change so if it goes wonky I can quickly unwind it. Sometimes it is related to the alarm, other times it acts like someone arrived late after the system was put to bed. Most of the time it is the third program below that triggers and why I started checking state variables. One thing to note is that with a late arrival sOccupied is also changed to "1" until the MB_Door_AllOn is pressed off to rerun the Bedtime program and zero out the occupied status. I use "occupied" to mean someone moving around a section of the house. Some final notes. There is something going on with the mix of old and new insteon. Sometimes a program will run and all but one light will go out, and then it goes out at some random time later. I have looked at my PLM to make sure I haven't overloaded it, but yes there are a lot of devices. When I swapped to the eisy, a lot of things changed, and I haven't had time to really understand the whole Poly thing. If the internet isn't connected, is my system not going to work right because it can't communicate with the Poly? The whole reason I don't just use Alexa/Apple Home/Google Home is I want an autonomous stand alone system. I want a truly smart home not just a "connected home". Control 4 has been on my radar as have swapping all of the Insteon lights for Lutron. The PLM has been a weak link in my system since the first one. I am on the 5th PLM now. The problem with Control4/Lutron is that I no longer own an integration company and don't have the access to the pro level stuff. I don't want to be dependent on the installation company. Guest Edit Area In Use Occupied_Guest_Edit - [ID 0044][Parent 0001] If 'EditRoom.1 Motion' Status is On And $sOccupied_Guest_Edit is 0 Then $sOccupied_Guest_Edit = 1 Else - No Actions - (To add one, press 'Action') // Both the "Wakeup Mode" and "occupied test" Occupied Zero set by "Bedtime Program" . Used to turn off the energy saving modes and make the house comfortable and lit properly for people being home. Occupied Guest Check - [ID 0045][Parent 0001] If $sOccupied_Guest_Edit is 1 And Program 'Occupied_Guest_Edit' is False Then Wait 1 hour $sOccupied_Guest_Edit = 0 Else - No Actions - (To add one, press 'Action') // Not verified - idea is to set edit area to empty if no one is inside for over an hour and house is closed up. Energy Saving Strategy. Late Arrival Lights Auto Late Arrival - [ID 000D][Parent 0001] If 'ELK Alarm / Garage Big' Logical Status is Violated And 'Garage Drive Spots' Status is Off And ( $sNight is 1 Or $sEarly_Morning is 1 ) Then Set 'Garage Drive Spots' On Set 'Downstairs Office Lamp' On Set 'Kitchen Under Cabinet' On $sLate_Arrival = 1 Else - No Actions - (To add one, press 'Action') // Lights up a path to bed when arriving after house shuts down or bedtime program runs. Auto Late Arrival Auto Off - [ID 0010][Parent 0001] If $sLate_Arrival is 1 Then Wait 10 minutes $sLate_Arrival = 0 Set 'Garage Drive Spots' Off Wait 20 minutes Set 'Kitchen Under Cabinet' Off Wait 10 minutes Set 'Downstairs Office Lamp' Off Else - No Actions - (To add one, press 'Action') //shuts house back down after a late arrival if no other events are triggered. The Program That usually restarts Night Daily Home - [ID 0003][Parent 0001] If $sOccupied_Main is 1 And $sNight is 1 Then Set 'Laundry Toe Kick' On Set 'Entry Art Niche' On Wait 1 minute Set 'MB Cabinets' On 70% Wait 1 minute Set 'Kelly Office Lamp Scene' On Set 'Stairwell 3 Way' On 50% Wait 30 seconds Set 'LR Lamp Scene' On Set 'Downstairs Hallway' On 50% Set 'HallwayOutletCurio' On Wait 30 seconds Set 'Upstairs Hallway 3 Way' On 50% Wait 30 minutes Set 'House Front' On Else - No Actions - (To add one, press 'Action')
-
@dbwarner5, yes I did the find/replace looking for the state variables to see if I left one somewhere. No luck yet. 95% of the time when I press the MB_Door_Keypad_AllOn "Off" the "Bedtime" program runs just fine regardless of the alarm being set. Program below. I referenced this in the thread about looking for a log of programs running to try and figure out the error. On occasion the lights in our bedroom will randomly come back on. The only time this should happen is if the alarm goes off. I disabled that program and the "error" did not go away. When I say "randomly", sometimes it will be 30 seconds other times several hours later. Sometimes it won't happen for a week. I thought it could be a motion sensor triggering, however when I brought the laptop to the bedroom to see which sensor it could be, I found state variables not equal to zero when they should be zero after this runs. Last night it worked normally so I have no idea what is causing it. Yes each motion sensor can reset "sOccupied_Main" to 1, but none of the associated programs ran and sOccupied_Main remained at "0". What I did see was that two of the "states", sEarly_Morning and sNight were both "1" which should never happen. After a manual reset of the variables, the system was fine for the night. BedTime - [ID 0016][Parent 0001] If ( 'MB Window Keypad.On' is switched Off Or 'MB Door Keypad 70 9B C0All On' is switched Off ) And $sOccupied_Guest_Edit is 0 Then $sEarly_Morning = 0 $sSnack_Walk = 0 $sAlarm = 0 $sKitchen_Motion = 0 $sNightAway = 0 $sOccupied_Main = 0 $sPartyDay = 0 Set 'MB Kelly Watch Winder' Fast Off Set 'Garage Lights' Off Wait 5 seconds Set 'Kitchen Main Lights 3 way' Off Set 'House Front' Off Set 'Garage Front Porch Lite' Off Wait 5 seconds Set 'Holiday Lights' Off Set 'Back Patio' Off Wait 4 seconds Set 'Dining' Off Wait 4 seconds Set 'LR Pool Table' Off Set 'LR Dining Lamp' Fast Off Wait 5 seconds Set 'HallwayOutletCurio' Off Set 'LR Center Outlet Top' Fast Off Set 'LR Center Outlet Bot' Fast Off Set 'Dining Room Main' Fast Off Wait 5 seconds Set 'LR Lamp Scene' Off Set 'Downstairs Office Lamp' Off Set 'Downstairs Hallway' Off Wait 5 seconds Set 'Entry Art Niche' Off Wait 5 seconds Set 'Stairwell 3 Way' Off Set 'Upstairs Hallway 3 Way' Off Wait 5 seconds Set 'Kelly Office Lamp Scene' Off Wait 4 seconds Set 'Studio Fan' Off Set 'Studio Button Light' Off Wait 5 seconds Set 'Studio A' Off Set 'Studio B' Off Set 'Studio C' Off Wait 4 seconds Set 'MB Cabinets' Off Set 'Movie' Off Set 'Party Night' Off Wait 4 seconds Set 'Party Day' Off $sBedtime = 1 Else - No Actions - (To add one, press 'Action') // Puts house to "sleep" and sets sOccupied to 0. Manual activation only by buttons in Master Bedroom. Here is the only place where sNight and sEarly_Morning are referenced Night to Early Morning - [ID 0047][Parent 0001] If Time is 4:00:00AM Then $sNight = 0 $sEarly_Morning = 1 Else - No Actions - (To add one, press 'Action') // Used to define the difference between going to bed late and waking up very early. 0400 is an arbitrary number.
-
Sorry for the late delay and all the ideas to check I am on the road a lot, hence the long code effort to both make the house appear lived in and save energy along the way. @dbwarner5, yes the times are all correct however, both of my #Insteon thermostats have locked up, and my system shows several short power outages and one long one recently while I was away, so there were some other things out of sync. Almost enough to think about adding batteries to the house. @IndyMike, I switched from program statuses to state variables a long time ago but there could still be one hidden in the mass of 15 years of adding to my program. I'll keep looking. @Geddy, the other thread I was referring to is this one. The problem vanished again for several weeks. Maybe I am asking questions wrong. The one thing that I know this time I didn't know last time is that the "states" are somehow either not changing, or changing back, which leads to @indymike suggestions in both the lower thread and this there is something hiding in my program. That is why I was trying to see which scenes run in a log format. After making the changes to see the status of the house via a keypad everything worked fine for almost exactly a month and then the lights started going nuts again. My solution is to press the MB Off to trigger the "Bedtime" program and then go in the other room and pull the PLM out of the outlet for the night. Not a wife friendly solution.
-
@larryllix, yes I understand the program is "green" on the main Programs/Details tab, and I guess that is what I don't understand is why that is "true" when it is not? If the eisy is based on "states" or "conditions", sunset is a time as defined in the header bar isn't it? So How can I make an event only occur at sunset? This is the same code that has been in the system for over 10 years, and last night when I hit bedtime, which changes sNight to 0, seconds later sNight was 1 again. Maybe I am looking at the wrong issue if Sunset true is normal all the time. If that is the case, I am back to square one, trying to see what is turning lights on after I have gone to bed. the bBedtime button/program work 80% of the time. Now the only other commonality is that it happens when I need to get up early, but the system has no way of knowing that until I get up and set off a sensor in the hallway. Last night both "sEarly_Morning" and "sNight" were "1" which should not happen. That program is here too. I manually changed them both to zero and hit bedtime. This morning they are both still zero.
-
Yes, The program triggered by Sunset appears to be the bad actor. I was mistaking it for the alarm being triggered in the previous threads, both are closed so I couldn't continue the threads there. That is why I brought the laptop in the bedroom last night. Walking back to my office set off so many other programs and changed the "state" of the house. Last night I started by looking at the "state" and "Early Morning" was "1". At 4am daily I change the "sNight" variable to "0" and change "Early Morning" to "1" so that different things happen. It is the changeover from arriving late at night to leaving early in the morning for work. I want the house to do different things. I am still working on the "home feature" so it can transition based on if we are home or not. I also added "sEarly_Morning" ="0" to the Sunrise cleanup since it has remained at "1" from time to time. Last night at 9:33 when I selected "bBedTime", the "pHome-Sunset" program ran and then the cascade of events, I looked at the "states" to see why that would happen and noticed that "Sunset" was "True" which quickly reset "sNight" to "1" This error should only happen if I press bedtime exactly at or just prior to sunset. Assuming my understanding of state and condition is correct. The entire program if statement for the "pSunset" program is "If Sunset" Since the Sunset program was somehow "true" at 9:33pm all of the related variables reset and programs that light up the house started running. I have a very complex system, and use fewer "scenes" than others. I used to own a security company and scenes don't look "lived in" to pros, so the lights come on more like the old lutron "vacation mode" when no one is home. Although the eisy is much bigger and faster, I feel like the ISY ran my programs faster. I troubleshoot very simply and try to fix one bug at a time. Right now, I am trying to figure out why a program based on sunset could be true at any time other than sunset. Once in a while I think if the eisy is busy at Sunset it misses it. I have come home to a dark house from time to time as well but as soon as I open the garage door, the programs run because sNight =1 and "sOccupied" is also then 1. I haven't pursued that issue, but it may be related. 99 bugs in the code, 99 Bugs in the code Fix one now take it down 104 bugs in the code.
-
For a while I have been troubleshooting lights that randomly come on. Always when I need to get up early. Tonight it started so I brought a laptop into my bedroom so I could troubleshoot without setting of any motion sensors so the house didn't think I was getting up. There is a program "bedtime" which I have posted and discussed in other threads. At the end randomly some lights come on as if the alarm was being triggered. Tonight I pulled up the programs and two state variables were wrong but most importantly the "Sunset" program whose condition is "If Sunset" and nothing else was true. If I understand correctly this is only true at Sunset and should run once a day. It is 9:33 pm and Sunset is showing as true. Anyone else having issues like this? Very Random, has worked perfect for over a month and today it forgot the time and started turning on lights like it was sunset. The easy is supposed to be faster but I noticed the "sunset + 15" program didn't run until nearly an hour later. as well. Yes I rebooted.
-
@IndyMike, Thank you, you did lead me down the right path. By setting the led to ON 6/OFF 0 I could see that the "C" button was in fact off. Everything went normal. Pressing the C button after the bedtime program ran triggered the alarm lights program as it should. Then reset for the big one, pressing C did nothing before hitting off. After hitting off, it made the house go wonky. I turned off C, hit bedtime again and the system recovered. Hitting all off and opening a door, triggering the alarm, the C lit up and the lights started coming on as they should in the order I want. Keep me in the dark, intruder in the light. Why the Master Keypad Off doesn't show in the Log I guess is the mystery. The motion sensor in the Garage shows on, then the lights come on and then the sensor shows off. I use a program to delay the lights turning off by 20 minutes. Either big door opening or motion turns on the lights and starts the delay timer, that's why so much shows up in the log for the garage lights turning on. Not sure why different random alarm related programs trigger when C is on before off is pressed. Nor do I Understand the timing of those events. Since I have a repeatable experiment to prove my programming ignorance I think I won't pursue that question. I went the lazy way on the LED problem. Using the Green permanent marker to make the LED on the "OFF" button dark enough to not keep me awake worked very well. Since Insteon quit making color kits, I wish I had thought of this sooner. I bought a giant permanent marker kit at Costco.
-
@IndyMike Thank you for looking over the logs. I am not super clear on the first question. I simply use the press of the MB Door Keypad off button as the trigger to start the program. Maybe I am using trigger in the wrong context. Maybe I mean to say it creates a temporary state? Either way, I am not sure how that relates. Selecting "Buttons Toggle Mode" at the bottom of the admin panel for the MB Door Keypad shows all 5 buttons as "Toggle". I do agree it is interesting that the MB Kelly Watch Winder goes to off, and there isn't anything about MB Keypad All On - off. side note, I do hope UDI can make the bottom bar scroll someday in the admin panel. I just discovered "buttons grouping" when I stretch it across two screens to find the toggle mode button. What else am I missing? As far as the second question, yes I used to have a 3 watt bulb in the curio and after talking with Steve (UDI/Insteon) I went to a 6 Watt and turned off the "auto on sensing" feature. Since then, the curio has been stable except during these events. The i3 Outlet in my office has a 9 watt bulb and regularly shows "communication error" for some reason. I have replaced the outlet twice and can't find any interference there. Third question. Short answer: A scene isn't consistent in its order of operation and doesn't give the illusion of being lived in. Also a program lets me set the lights in the guest bedroom if no one is there but not turn out the lights if they are there. Same program three less lines based on the state of "sOccupied_Guest" Long Answer (if interested else skip to next paragraph) When I owned a Lutron Dealer that was also a Security company we sold HAI Omni's and Lutron because they created a "vacation mode" with random light changes. Through the security company we learned the more it looks like a person walking through the house the more likely the baddies move to the next house. It was more effective than an alarm or a dog. Eventually, Lutron created "learning mode" which was amazing. After a month I never touched a light again. The whole reason I went ELK M1/ISY 16 years ago is that HAI was no longer available and the ISY could do this quite well with a little effort. And I sold the Lutron dealer and was too cheap to pay retail for it with SmartHome just down the street from me. Also when I walk in at night there is button downstairs I can press that does a similar thing and the house follows me to bed. Cool nerd stuff I guess. The program itself has worked pretty solid for over 15 years. Unless I do something stupid like attach a button to an alarm event and also to a scene that is. You are probably sending me down the right path. I now realize I made that C button a Panic/status button by making it a controller/responder to the elk. That may have been "on" last night and as you noted with the off button it doesn't show in the log. I have no way to know without going to my office and logging in (which does all kinds of other things) since I haven't figured out a way to make the led dark on all six buttons when they are off and on only when one of the buttons is "on". In my bedroom I didn't have instant feedback of the status. I took a green sharpie and made my own color change kit with the clear keypad covers. On the off button, I colored both sides and the back of the off button so hopefully that is dark enough. I am going to leave all programming as is and see if that was the problem. Yes you are correct about other programs, and here is the odd one. Each time the lights came back on a different program ran. One is based on Sunset the others based on the ELK alarm status just as the C button problem that started this thread was. The eisy is on a large battery back up and didn't reboot so it isn't a catchup problem. Learned that one already and the first Cyberpower UPS did all kinds of weird stuff to my system. Stay tuned...
-
@IndyMike. Sort of, the KPL C by the bed was simply a responder so I got a polite alert of someone at the gate. We use a KPL in the office to see motion in the house. Each sensor lights up a key while it is on. I found it an easy way to find our previous dog based on motion when she was going deaf. I don't know why it activated the A button, but removing it from the scene fixed it for a while but.... Well, now it gets fun. After a few months of flawless operation, the lights have a mind of their own again. I went through this list until I caved and unplugged the plm. I wish I could blame the white hat hacker next door but I am sure this is me again. Only program changed since last time this appeared fixed was an auto garage light and that was a week ago. I changed the duration the light was on and removed a trigger from the if statement. Here are todays logs and as requested the "bedtime" program. The error at the end is the time of wife tolerance limit and PLM unplugging. I included last nights logs showing what happened. The error in my office is sporadic, and I have replaced the outlet with the new i3 and added a dual mode switch to control it on the same phase and still have comm errors from time to time. It was way worse with Cyberpower UPS in the house. Here it is. I pressed the "bedtime" button at 9:23, "Kelly Watch Winder" is off. That is at the top of the program so I know the eisy/plm "heard" the command. The lights started coming back on so at 9:41 I set the alarm and tried again. The hallway curio is the first device that turns off and right back on at 9:23 and again after the alarm set and I press bedtime again at 9:43:56. The "MB Door Keypad 70.9BC0Foyer" button does also change from off to on which was the issue I fixed before by removing it from the "front lights" scene. I also notice later that the MB Window Keypad.Office and .Stairs come on. Almost like the programming rolled back. .Stairs should only light up when the stair motion is on. and then the closet.stairs should come on as well and it does not so this makes little sense. The thermostat is changing from "night" to "day" temps also at the end which is odd. After I try and get some sleep, I will plug the PLM back in. This is a new MB Door Keypad btw. I replaced it as a precaution last time, so this is very likely another "feature" I accidentally programmed in, or created by a manual link. Again I will check after some sleep, you can see the lights have been turning on for hours, and not in any consistent way like a program running. Unlike other threads, this isn't hourly and I don't see a pattern yet. I left the program in .iox since I can't seem to copy in a readable format. There is as much as I can put in a screenshot here too. I thought the export feature would let me paste a formatted version, but it created a solid blob. I use a Mac so was hoping to drag copy paste, but... there I go again wanting things to work the apple way. BedTime.v5.8.4__Wed 2024.09.11 02.30.00 AM.iox UDReport truckated.pdf UDReportNormalNight.pdf
-
If the LED has a rocker on them they aren't likely to be designed to dim and they will do odd things depending on how you dim and will fail sooner. Flickering and humming are normal with a lot of switched LED panels when you try to dim them. It might be better to go with a lutron dimmer and the adapter package with new LED Lights that @peterathans suggested if you want the lights to last and have full control of them.
-
Hello all, Thanks for the responses, and I found the issue. @IndyMike is correct there weren't any sensor activations in the logs and unlike Ela's problem my sensors do show in the log so I stopped looking down that path. It took watching both the logs, the event viewer and keeping my laptop next to the bed to find it. But as Yoda would say "Fixed, problem it is". What I found: Button C on one of the 5 button keypads by the bed was a responder to the front lights being on. The idea was if the front lights came on because someone entered the gate we had a visual since the "siren" as a doorbell is highly unreliable. In my office I use the center four buttons to show me motion at each of the four sensors. When one is activated the light is on. Makes it easy to find the dog or see if someone comes in the house while I am working. July 3rd I set the front yard lights to remain on from sunset to sunrise so we could leave a flag up correctly for the entire 4th weekend. This was activating that keypad, which in turn changed a state of the Master Door Keypad back to On that I did notice in the logs. It was confusing, but if you look at the log I posted it looks like I pressed the "on" side of the same keypad I just pressed "off". I thought motion at first because of the A.C. coming on. I think the timing was somewhat random due to the PLM and communications limitations. I did remember that I had once added a program so that if someone showed up at our gate after "bedtime" that the lights in our room would come on to alert us. I saw that program get a green stripe in the admin panel just after pressing the "off" to activate "bedtime". The solution was to remove the .c key as a responder to the front lights. I did some testing and for some reason if any of the 4 middle buttons are "on" the state of "master keypad" returns to on. The keypad is Keypadlinc Dimmer 5 buttons v.45. I don't really understand this because the .b.c.d. keys should be read independently. I have upgraded to 5.8.4 and will retest or try to find another way that it can all work. I also have a spare keypad, but there could also be a spurious signal where the .c of the keypad address isn't being received. I have had noise issues with Cyberpower surge protectors and thought I had it all cleaned up, but maybe not. For now I have had two nights of good sleep.
-
@kurelgyer, While I would love to see Insteon join the matter crowd, I am not quite understanding what @paulbates is saying. Like many in earlier threads I leaned forward and fell into the chasm hoping UDI would create a bridge. I disagree with Mr. Bates about implementation and working. Somehow Amazon Echo and Apple home both instantly recognized my matter devices once I figured out how to designate one of the echos or an iPad as the "matter controller", with only amazon echo devices or only apple home devices everything worked fine. The only problem I see with matter is that somehow once a matter controller is set within an eco-system that system becomes the master. This seems to violate the whole idea of matter, but then again who is matter to force Amazon and Apple and Google to play nice. I have caved and let Amazon echo be the master and Apple Home can no longer control the blinds or the outlets. Honestly does it matter if I ask Siri or Alexa or Google? I would much rather add logic in my eisy to do the same tasks. If all I wanted was a schedule the Insteon Hub would be fine. All of the devices are instantly recognized and added to Amazon, Apple and UDI eco systems. I just haven't found a way for the UDI eisy to understand what the devices are and do. With 8.3.4 update, each blind now has a window of information that wasn't there before, but it looks like an alarm sensor from my Elk M1. My fingers are crossed that whatever information is being sent in the setup mode by the devices that Apple and Alexa can figure out, UDI will figure it out too. They always do.
-
Bummer, at least now I don't feel like I was missing a simple source of data. I will keep troubleshooting. If it happened every night or if I knew a certain sensor was doing it, that would be great, but the log doesn't have the same status changes in the same order when it happened last night several times. Hopefully the flush after the upgrade today helps. If not I will unplug my keypad (tabletop mount) and see what that does.
-
That looks great but I only get "on" or "off" not "Switched On" or "Switched Off"?
-
I use the insteon for mine. The dimming of LED's is very tricky though because they draw so little the dimming might not dim enough for you. Did the lights come with a dimming color module? https://www.insteon.com/dimmer-outlet I a surprised an LED lighting module is three prong. I have this for a curio with an LED. https://shop.insteon.com/products/dimmer-module
-
I would update to 5.8.4 first and then maybe do a restore if it is still not responding.
-
PLM status is internal so nothing to do with MS/Crowdstrike outage. That is the PLM not talking to your eisy. Those errors look like the eisy isn't communicating with the admin panel, so it might be worth opening a ticket. Did you upgrade to 5.8.4 yet? What version are you on? Sadly I am on my 5th PLM since switching to my first ISY. I now keep a spare handy. There is a wiki to reset the PLM and reload it but it might be better to backup your eisy, and do a factory reset/restore, upgrade to 5.8.4 and then reset the PLM https://wiki.universal-devices.com/ISY-99i/ISY-26_INSTEON:File_Menu#Replace_Modem_(PLM) Restore PLM is a very long process. You could try doing just that, a factory reset of the PLM and then restore but that will double the effort if you have to do it again after an eisy reset.
-
A while ago I went with greywinds blinds and got the matter motor upgrade. The eisy finds them without even putting them in programming mode but they look like a motion sensor with temperature, luminance and other odd fields, and only on or off even though one is open 50% now. My amazon echo network also found them quickly and added them automatically. Alexa control isn't bad but it means I need to tell Alexa to open or close them and I would prefer to use the state of the house, sun angles and other cool features I can use in my eisy. Most of the "Alexa ready" blinds on amazon use the zooksmart engine. I also have a set with Zigbee motors and they showed up too, same issue. Thoughts? ideas? or just wait for UDI to load the code?
-
I am trying to troubleshoot a new "tick" my house has developed. When we go to bed we press a button I call "bedtime" (MB Door Keypad 709BC0All On in the log). It is used to start a program that shuts the house down, checks the alarm status, power grid status and if not in a power restricted status, turns on the thermostats which lately has turned on the A/C. I can see in the logs where everything shuts off and pretty quickly, it acts as if we "woke up", this requires one of three motion sensors to be triggered, the garage door to open, the alarm to be turned off or the "on" button on the keypad by my bed to be turned on. We use the Off on the same keypad as the "bedtime button" My guess was that it is the motion sensors when the AC kicks on but the logs don't show it so I feel like I am on the wrong path. The log shows the lights coming on and the keypad status changing from "off" to "on". So I am also looking at spurious signals. The on/off buttons on the 6 button keypad are not a responder or controller for any devices. They are only used to trigger programs. So is there a way to see the history of the programs during the night like a log? The Programs summary tab only shows the last run. If I get up to walk to my office to look at the admin panel, the sensor runs the program to wake the house up and that is the "last run". 718 log.pdf
-
Recently my house has been waking up on its own. I believe it is the insteon motion sensors activating when the A/C kicks on. This is a new "feature" so I was troubleshooting and upgraded from 5.8.0 to 5.8.4 today. So far the upgrade is faster and smoother, glad I read to clear java etc first so it was easy, kudos on the back up speed changes. Other new "features" I found after the update: The email tab in configuration lost all smtp settings and returned to default. Insteon Motion II V .47 the battery level is now blank and "battery powered" is false.
-
All MS services are restored so is it working now? Ironic that the security software did the same thing it is supposed to prevent isn't it. I switched to UDI/Insteon/matter because it was standalone and worked even if internet was down as long as I had power in the house. So if your local commands aren't working, look at the log and see what it is getting.
-
@FarmerGeek, @BCreekDave is correct, upgrading to the eisy was it's own learning curve, but with the Polyglot and the node servers there is a lot more you can do with the system. I highly recommend reading through the product page. Once you migrate to the eisy, you will need to double check every program for errors and see if any or all are 'disabled". I had Insteon with Elk, and the Elk poly is outstanding but took a little work to set up. The good news to your two complaints is that there is a solar edge plug in so maybe that will help ease the transition pain.
-
Ok so not quite sure here, Why a door dry contact, not wireless sensor? If the Insteon RF is too slow can you hardwire an elk alarm integration? Why do you think you need "a stack" of 2450's? I use the Insteon 2450 but only at the gates. All of the house doors and windows use hardwired mag sensors or Elk wireless alarm sensors. The Elk M1 Gold might be your answer for a super sized dry contact sensor that can communicate with the eisy? For the pool and Jacuzzi water sensors, I can't imagine RF speed is critical unless you are doing some crazy cannonballs and need a quick refill. For the multi speed pool pump control, I am guessing also multiple pumps? Most are only two speed and use their own remotes. We only had one successful big pool integration, and we did that with Crestron via serial connection. I know some of the bigger water shows are controlled by Lutron or DMX controllers. Pool pumps have a heavy load at start up and most relays can't handle it. I am guessing you want to use the closure to activate a switch? There were some ZWave relay systems but I am pretty sure they are off the market, not enough interest. Maybe you can find a rebuild? For the pool you may be stuck with something like the Pentair controller.