Why are the Honeywell 6160 keypads LCD backlight on since the install of the integration? #28
-
After install of the "vistaalarm" integration and the electronics board, everything since to be working fine expect the LCD backlight of my Honeywell 6160 keypads (including one RF). The keypad LCD backlight is staying on all the time (on my 3 keypads). When I turn off the "vistaalarm connection", the behavior of the keypad backlight is back to normal (turns off after 30 to 40 seconds). |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Comment out line 460 (the "vista.write") line by putting to forward slashes in front as shown below. The reason the lcd is lit is that my code sends an "*" every 30 seconds to force the display to show faults. You can turn that off. Try it and see if that takes care of th e issue. It should not have too much impact in operation with it commented out. Line 460
|
Beta Was this translation helpful? Give feedback.
-
Unfortunately with the Vista20 there is no way for the emulation to detect a zone open status until the FAULT display is sent to the keypad. It is a very basic system this way. What it means then is that the ESP code and home assistant will not be able to know that a fault is active .. ie A door open if you have "Hit "*" for faults showing on the keypad until a person goes and actually presses the * key. For this reason to be able to detect a fault quickly and display it, my code sends an automatic * in response to the Hit * display to show the faults and be able to act on them. You can turn that off and see if that works better for you by commenting the two lines below (around line 883 in vistaalarm.h)
|
Beta Was this translation helpful? Give feedback.
-
You need to have the esp send the * when it sees the Hit * for faults or it would be pointless to have it there since it would never see the faults. No option required. |
Beta Was this translation helpful? Give feedback.
Comment out line 460 (the "vista.write") line by putting to forward slashes in front as shown below. The reason the lcd is lit is that my code sends an "*" every 30 seconds to force the display to show faults. You can turn that off. Try it and see if that takes care of th e issue. It should not have too much impact in operation with it commented out.
Line 460