
hart2hart
Members-
Posts
1679 -
Joined
-
Last visited
Everything posted by hart2hart
-
Zone Nodes Seen in AC - But how do I see status and control - RESOLVED
hart2hart replied to glenn_steiner's topic in Rachio
I don't get a screen like this for zone. I get the below screen. Is this something that change going from 4.x to 5.x versions of the NS? I would like to be able to turn off and on but it just has a Start botton with times to pick and Start with 0.000 is Off. -
@Jimbo.Automates , thanks for taking this NS over. I debated using it early last year and did not because of no support. I installed a Rachio3 12 zone controller today and am working to get it configured with NS. I've added the api key, confirmed remote access is enabled, and rebooted the eISY a couple times. However, I have the following issues. 1 .Web hook error message (I xx'd out what appear to be a MAC address) ERROR: 04/12/2025 19:53:39 See log for: Connectivity test to my.isy.io:443 was not successful. Sending: POST to my.isy.io:443 /api/eisy/pg3/webhook/response/xx:xx:xx:xx:xx:xx/17 headers={'Content-Type': 'application/json'} data={"test": 0.08261868723978405} Received: status=500 reason=Internal Server Error Please confirm portal webhooks are enabled, See Webooks Requirements ERROR: 04/12/2025 19:53:39 See log for: Unable to discover until webooks are working properly http://d2z8ydsemzif1x.cloudfront.net/monthly_2025_04/image.png.0c53299b072b2966310db08b537c985d.png 2. When I turned on a zone via AC using Start for 5 minutes, the status does not reflect On until I hit query and does not go back to Off until I hit query again. I left the shortPoll at 5 and longPoll at 600. I'm sure its because I'm just starting but would appreciate insights. Thanks, Paul http://d2z8ydsemzif1x.cloudfront.net/monthly_2025_04/image.png.2ca09b90d18c44d0eae6d15aca08631a.png Is
-
Has there been a better than $10 off on $50 (20%) items since Insteon came back to life?
-
Great, thanks. Let’s see if UD upgrades the python library. If not, is it possible I could use HA(potentially on eISY) to implement this functionality?
-
To be clear, did you define the scene in the Admin Console and then create the same scene using device to device method?
-
My guess is the switch connected to the fixture is going bad and losing its link table. I would have restored it only to see the impact. Or maybe one of switches is going bad and generating noice on that circuit to which I’d air gap them one at a time to see if problem goes away. First the two controller only and then one connected to fixture. If it’s the one connected to the fixture turning other two on and off will show in their LEDs but fixture will not be controlled.
-
Thanks. I could use the alarm open zone via envisalink-DSC because the doors I open are entry delay so could catch that to force update and then get the user.
-
Thanks. I recall that now. Was there something called Force Update you had added that could be used to effectively lower polling interval?
-
That sound good! As we discussed in the past (can't find thread or DM but recall the exchange), the ability to catch the unlock event and the Access Code (not the actual number but a representation) would be a great feature for me. With the Schlage ZWave locks these WiFi versions replaced I used a UserNumber and with that via a program then sent a Disarm security command via Envisalink (likely using NodeLink at that time). I had a user on the lock with the Distress Code so that code could be entered on the lock to send through as Distress code to alarm monitoring. This was a big plus when having hands full coming in door located near alarm keypad and even greater to allow entry though doors not near the keypads.
-
Thanks. If we get to that point, does it look like access_code_id could be used in programs to identity the code used to disarm?
-
Thanks. @Goose66 I suspected that it would not be until python was updated on eISY. However, once/if that occurs, would the newer library provide features like detection of who just unlocked the door? Going into an area I don’t know, do you think/guess will it be possible to use the updated library from another box like rpi or on eISY once the HomeAssitant extension is released to leverage those features?
-
Good morning @Goose66 I was just reading about the plugin issues related to library version and supporting python version required to run it. That prompted me to look at the public documentation for pyschlage. I notice some methods that may have been added at some point. With these methods (if I read correctly -- big if) could we possibly now detect unlock events and quickly get the user that unlocked it? for example method below. Thanks! lasspyschlage.log.LockLog(created_at: datetime, message: str, accessor_id: str | None = None, access_code_id: str | None = None) A lock log entry. access_code_id: str | None= None Unique identifier for the access code that triggered the log entry. accessor_id: str | None= None Unique identifier for the user that triggered the log entry. created_at: datetime The time at which the log entry was created. message: str The human-readable message associated with the log entry.
-
@bmercier , thanks for great plugin and updates. I received notification the a new version is available. Where are release notes posted or is it just internal cleanup?
-
Only as a point of reference, I have 3 7900. They all have 6.93 fw (which is the latest & been that for years) and function as desired.
-
I use humidity control and the values for Humidifier Active are True and False as Goose describes. Do you have the Thermostat setting for Stages and Outputs then Aux Output Stage set to Hum?
-
Multiple Partitions and Zone Connected to keypads Not showin
hart2hart replied to apostolakisl's topic in EnvisaLink-DSC
Hi. I created the following programs when I moved from NodeLink to EnvisaLink-DSC to account for differences in their state tracking models. The goal is to have 3 variables that tracks Security Armed/Disarmed, Security Away Armed/Disarmed, and Security Stay Armed/Disarmed. It looks like they are still fine but could be updated now to simpler representation. Can you take a quick look to see if you agree? Security:Set Armed - [ID 003A][Parent 000C] If ( 'Security System / Security System:Partition' Partition State is Armed Away Or 'Security System / Security System:Partition' Partition State is Armed Away Zero-Entry Or 'Security System / Security System:Partition' Partition State is Armed Stay Or 'Security System / Security System:Partition' Partition State is Armed Stay Zero-Entry ) And $Security_Armed is not 1 Then $Security_Armed = 1 Else - No Actions - (To add one, press 'Action') Security:Set Disarmed - [ID 0059][Parent 000C] If ( 'Security System / Security System:Partition' Partition State is Ready Or 'Security System / Security System:Partition' Partition State is Not Ready ) And $Security_Armed is not 0 Then $Security_Armed = 0 Else - No Actions - (To add one, press 'Action') Security:Set Armed Away Armed - [ID 0005][Parent 000C] If ( 'Security System / Security System:Partition' Partition State is Armed Away Or 'Security System / Security System:Partition' Partition State is Armed Away Zero-Entry ) And $Security_Armed_Away is not 1 Then $Security_Armed_Away = 1 $Security_Armed_Away_I = 1 Else - No Actions - (To add one, press 'Action') Security:Set Armed Away Disarmed - [ID 0031][Parent 000C] If ( 'Security System / Security System:Partition' Partition State is not Armed Away And 'Security System / Security System:Partition' Partition State is not Armed Away Zero-Entry ) And $Security_Armed_Away is not 0 Then $Security_Armed_Away = 0 $Security_Armed_Away_I = 0 Else - No Actions - (To add one, press 'Action') Security:Set Armed Stay Armed - [ID 005C][Parent 000C] If ( 'Security System / Security System:Partition' Partition State is Armed Stay Or 'Security System / Security System:Partition' Partition State is Armed Stay Zero-Entry ) And $Security_Armed_Stay is not 1 Then $Security_Armed_Stay = 1 $Security_Armed_Stay_I = 1 Else - No Actions - (To add one, press 'Action') Security:Set Armed Stay Disarmed - [ID 005D][Parent 000C] If ( 'Security System / Security System:Partition' Partition State is not Armed Stay And 'Security System / Security System:Partition' Partition State is not Armed Stay Zero-Entry ) And $Security_Armed_Stay is not 0 Then $Security_Armed_Stay = 0 $Security_Armed_Stay_I = 0 Else - No Actions - (To add one, press 'Action') -
Multiple Partitions and Zone Connected to keypads Not showin
hart2hart replied to apostolakisl's topic in EnvisaLink-DSC
I used nodelink and moved to envisalink-DSC a couple years ago. It does update status and last user. -
I recapped every capacitor and brought two of them back to life. This included the daughter card capacitors. None of the capacitors had ruptured and were not even swollen.
-
It sure did and I did same with Nodelink. It’s where I became acquainted with optimal humidity levels based on temperature.
-
I also use Venstar Colortouch thermostat to control humidifier. I have programs that monitor outside temp (also on thermostat if you install remote sensor) and set optimal humidity levels to prevent too much humidity that will fog windows and can cause mold.
-
As you stated, keISY is a great device and support from UD remains excellent. With the resurrection of Insteon device availability, I plan to be here a long time with Insteon and some zwave devices. Will try out matter if /when it becomes real.
-
I’ve got a copy of nodelink.dll that you can run on a Windows PC. Docker not required. Let me know if you want it.
-
EnvisaLink-DSC is a node server that runs on PG3x. It does all same things that original DSCLink did and then NodeLink when it combined several xxLink programs into one program. NodeLink if it can be found will run on Windows. The author io_guy was great but has moved on to other HA endeavors and his automation shack site was shut down. Are you running in ISY994 and if so do you plan to move to eISY?