Jump to content

hart2hart

Members
  • Posts

    1667
  • Joined

  • Last visited

Everything posted by hart2hart

  1. Thanks @paulbates
  2. Thank you.
  3. @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?
  4. hart2hart

    Humidity

    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.
  5. hart2hart

    Humidity

    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?
  6. 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')
  7. I used nodelink and moved to envisalink-DSC a couple years ago. It does update status and last user.
  8. 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.
  9. It sure did and I did same with Nodelink. It’s where I became acquainted with optimal humidity levels based on temperature.
  10. 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.
  11. 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.
  12. 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.
  13. 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?
  14. I moved from it to eISY and PG3x. There is EnvisaLink -DSC node server that replaces nodelink.
  15. Good morning, @bmercier. Got an update notice and upgraded to 1.2.1 from 1.2.0. It says installing but still reports 1.2.0 as version. Also, there are no release notes.
  16. I believe it’s called TimeData. There is also one called Sun. I may have renamed it to include celestial in the name.
  17. My guess is it calculates the sunrise and sunset times at midnight but did not apply new time to the calculations correctly after the change. As others have said, it will probably be right just after midnight. I feel like that this was reported last change and it was confirmed that it’s the displayed sunrise and sunset that are wrong but the actual comparison times used in programs is correct. Did I dream this or does someone else recall the same? I located post where it was discussed. /topic/43242-sunrise-off-1-hour-this-morning/ I use lux value from weatherflow to turn on and off lights based on night and day so wouldn’t notice if it were wrong with eISY.
  18. Here you go: DayLight Saving Time:Check For Change If 'Date Time and Celestial Info / Calendar' DST is not '$Daylight_Saving_Time_Current Boolean' Then Wait 5 minutes Send Notification to 'Me' content 'Daylight Saving Time Change' $Daylight_Saving_Time_Current Init To 'Date Time and Celestial Info / Calendar' DST $Daylight_Saving_Time_Current = 'Date Time and Celestial Info / Calendar' DST System: Restart IoX Else - No Actions - (To add one, press 'Action')
  19. I have a program that uses time nodeserver to detect time change and then forces a reboot. Works great!
  20. The latest version of the node server is for ESPHome based ratgdo firmware. Is 2.59 ratgdo firmware only for the mqtt version? Which would break its connection with the node server.
  21. You can upgrade ISY to 500 board and then make the jump to eISY. It’s what I did.
  22. I had about that length over shielded cat 5 or 6 for a time. Seemed fine. I don’t recall which 2 of the 3 wires were in a twisted pair but I’m sure google will tell you. Also a balun could be used which moves signal from unbalanced to balanced for the trip over wire.
  23. FYI PaulWieland commented 4 days ago I finally have an example of this problem in front of me so I can trouble shoot and fix it, and plan to do so in the next few days PaulWieland added a commit that referenced this issue 31 minutes ago Fix command values … 7521d1e PaulWieland commented 20 minutes ago Version 2.59 changes the data values sent to the GDO for control, and should hopefully fix this issue. PaulWieland closed this as completed 20 minutes ago
  24. Touch and hold app icon and it pops up as one of a few options.
  25. You can add faceid to app in ios18.
×
×
  • Create New...