esphome-vistaECP icon indicating copy to clipboard operation
esphome-vistaECP copied to clipboard

Panels do report close events

Open sirvictory444 opened this issue 1 year ago • 49 comments

"The panel only sends fault messages when a zone is faulted or alarmed and does not send data when the zone is restored".

They can report closes, both wired and wireless. The Big Blue company always nerfed their firmware, perhaps what you have is.

I have several 20p, various firmware versions, bought through a Honeywell dealer and they all immediately report zone closings. As I understand it, this is not accounted for because your panel doesn't report closes and instead a TTL was implemented, is that correct? Would it be hard to add reading those events from the ecp bus?

I used to have an EVL-4 that would report immediate closings, but sadly a lapse in my IoT firewall rules allowed it to phone home and it received a firmware update and zone status is now very slow. I'm looking to build and use your software now.

sirvictory444 avatar May 09 '23 21:05 sirvictory444

Vista's do not report closing to the display that I know of. Perhaps you can post logs of your panel messsages and we can see if yours is reporting different then others. There is no way for me to know about those supposed events unless I see packet logs.

Dilbert66 avatar Jun 05 '23 13:06 Dilbert66

Oooh, let me know what to look for; would love to see if 250s are different. The alarm company I have is amazing about explaining the internals; I'll ask them too.

On Mon, Jun 5, 2023 at 9:16 AM Alain Turbide @.***> wrote:

Vista's do not report closing to the display that I know of. Perhaps you can post logs of your panel messsages and we can see if yours is reporting different then others. There is no way for me to know about those supposed events unless I see packet logs.

— Reply to this email directly, view it on GitHub https://github.com/Dilbert66/esphome-vistaECP/issues/105#issuecomment-1576786483, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABGIMYGTK7FPNRVEE6S277TXJXL4XANCNFSM6AAAAAAX32WX4I . You are receiving this because you are subscribed to this thread.Message ID: @.***>

rcmurphy avatar Jun 05 '23 19:06 rcmurphy

Ok, I should clarify. The display really only displays what the panel sends it. When a fault occurs, the panel sends a "fault" message to the display. When the fault is restored, there is no "restored" message. It simply stops sending the fault message. My firmware basically only emulates a display panel. Now having said that, I also added the ability to capture messages from the RF module to the panel since those are sent on the same bus. With those I can capture open/close/battery status messages direct from the device . That's the exception. With wired zones that is not happening since the panel detects those open/close events directly and nothing is sent on the bus so we have to depend on what the alarm panel sends out to the display.

Now there is a way to detect close messages from the internal 8 wired zones but that requires the convoluted use of emulated relay followers, etc which I wont' get into here. So I don't see why Vista would have firmware that would send "restore" events to the panel for no reason since it doesnt display them anyhow. If your panel does display those restore, I'd be suprised, but hey, I havent seen everthing. Post logs of a fault/restore of a zone and we will see if the data supports what you are telling me.

None of this of course will work with 250 devices because they use the external loop interface to talk to the panel

Dilbert66 avatar Jun 05 '23 19:06 Dilbert66

@Dilbert66 Based on your response there I'm curious if Zones on Zone Expanders such as the 4219 would be faster to report the closed events since they're operating on the ECP bus? I would be tempted to add a zone expander and move my "important" zones to the zone expander if they're going to update quicker.

I'm also tempted to attempt to build a board that acts as a zone expander with a analog to digital chip (I don't really awnt to cut out the EOL resistors) on the i2c bus using your library. I just haven't quite figured that out yet. :D

ChrisLizon avatar Jan 10 '24 14:01 ChrisLizon

Yes, they would report the close events immediately as the communications between the expanders and the panel are captured and processed.

Dilbert66 avatar Jan 10 '24 15:01 Dilbert66

I have a Vista20P and I noticed that the panels report immediately when I close a door. The ready light turns on in under one second when I close the door, so there must be some message that is being sent. What logs would help figure out the message? Should I just capture the output from the ESPHome log output?

rwoldberg avatar May 14 '24 15:05 rwoldberg

You have to realize that the usual door switches are connected directly to the panel and not to the bus. The panel will detect the closure immediately because of that circuit, not because of a bus message. The panel will not send out a close message on the bus. It only sends out Fault messages to the keypads. The only way that a close event will be seen on the bus is if the door sensor is an RF module or attached to a zone expander so those messages will be captured on the bus. This is why the ESP code relies on an absense of a fault message for a period of time to determine a close event. Since you did not indicate how your door is wired to the panel, I'm assuing it's one of the built in panel zones.

Dilbert66 avatar May 14 '24 15:05 Dilbert66

Sorry I was not clear with that message, I have two keypads attached to the main controller, when I open and close a door the keypads show both the open and close immediately, there is no delay as there is with the ESPHome integration. The keypads are connected exactly the same as the ESP32 module so they should receive the same data correct? And yes all of my switch are wired I have 16, 8 wired to the panel and another 8 wired via a zone expander. I was testing with the front door which is wired to the panel no the zone expander.

rwoldberg avatar May 14 '24 15:05 rwoldberg

You'll need to be more specific here as to what keypads you have. With 6160 keypads, all you see are the fault/alarm messages. You do not see closure messages. The ESP code is emulating a 6160 type LCD keypad.

Dilbert66 avatar May 14 '24 16:05 Dilbert66

I re-read your message. The ready light turning on/off with the zone action is a different message altogether. When an open zone is closed, and if there are no other open zones on that partition, a ready message will be sent on the bus and the ESP code will show that as soon as it gets it which would be the same time as your physical keypad. If your implementation is not showing the ready signal quickly then there is something else at play than the esp code since there should not be any delay showing the ready light on.

Dilbert66 avatar May 14 '24 19:05 Dilbert66

I was looking at that and I think the wired keypads when they get the READY message they also clear the code for the open switches. I was thinking maybe the integration could do the same thing, when it sees the READY message then trigger the close event for any opened switches, since they would have to be closed for the system to ready. Also I have to key pads an ADEMCO 6150 and a Honeywell 6271c graphical keypad. The graphical keypad shows the open zones, when one closes it is removed from the keypad in 2 seconds, but if I set the timeout in the ESPHome integration to 2 seconds, any open zone will continually trigger open and close. Why do you think there would be a difference?

rwoldberg avatar May 14 '24 21:05 rwoldberg

ah.. ok, I misunderstood what you were saying. Yes, I had mean to implement the reset of open zones when the ready flag is active but forgot about it since I got busy with other aspects. I'll do that. Thanks for reminding me. The graphical keypad works differently as it has a different protocol then the 6160 keypads. It has more info provided to it from the panel. As to the TTL timer, if you set it too short, it will timeout and think the zone is closed but then an updated Fault message comes in and retriggers it as open again.

Dilbert66 avatar May 14 '24 22:05 Dilbert66

Oh, interesting. I get setting the TTL too low causes issue, I was just wondering why my keypad was behaving differently, now I know. Thanks.

rwoldberg avatar May 14 '24 22:05 rwoldberg

Actually, if you can, can you post esphome logs of the traffic you get when a zone is opened or closed? You would need to be using the dev branch version of the code though. I'm particularely interested in the F2 packet messages as those are the ones that hold the traffic between the panel and the 6170 keypad. I could potentially use this traffic to speed up zone status updates. It can also be used for other functions as retrieving panel status data such as partitions, attached devices, active zones, etc.

I've also updated the dev branch to clear zone's when the partition is in status ready as discussed.

Dilbert66 avatar May 15 '24 13:05 Dilbert66

Here is some data from opening and closing a door a couple times: [20:29:15][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 54 FE FE EC 03 01 01 01 BC [20:29:18][I][CMD:572]: 2024-05-15 20:29 F6 01 00 00 00 00 00 00 00 00 00 00 00 [20:29:18][I][CHK:572]: 2024-05-15 20:29 61 00 00 00 00 00 00 00 00 00 00 00 90 [20:29:18][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 55 FE FE EC 03 01 01 01 BB [20:29:19][I][CMD:572]: 2024-05-15 20:29 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [20:29:19][I][vista_alarm:947]: Partition: 01 [20:29:19][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [20:29:19][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [20:29:19][I][vista_alarm:971]: Prompt: HOUSE
[20:29:19][I][vista_alarm:972]: Prompt: CHIME,Rdy to Arm [20:29:19][I][vista_alarm:973]: Beeps: 0 [20:29:22][I][CMD:572]: 2024-05-15 20:29 F2 12 66 00 00 00 00 66 6C 02 45 6C F5 EC 01 01 01 00 00 2D [20:29:22][I][CMD:572]: 2024-05-15 20:29 F2 16 66 00 00 00 00 67 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 7F [20:29:22][I][CMD:572]: 2024-05-15 20:29 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [20:29:22][I][vista_alarm:947]: Partition: 01 [20:29:22][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [20:29:22][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [20:29:22][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [20:29:22][I][vista_alarm:971]: Prompt: FAULT 01 FRONT
[20:29:22][I][vista_alarm:972]: Prompt: DOOR
[20:29:22][I][vista_alarm:973]: Beeps: 3 [20:29:22][D][binary_sensor:036]: 'Front Door': Sending state ON [20:29:22][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state OFF [20:29:22][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1' [20:29:22][W][component:237]: Component vista_alarm_panel took a long time for an operation (64 ms). [20:29:22][W][component:238]: Components should block for at most 30 ms. [20:29:22][I][CMD:572]: 2024-05-15 20:29 F6 01 00 00 00 00 00 00 00 00 00 00 00 [20:29:22][I][CHK:572]: 2024-05-15 20:29 A1 00 00 00 00 00 00 00 00 00 00 00 90 [20:29:22][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 56 FE FE EC 03 02 01 06 B4 [20:29:25][I][CMD:572]: 2024-05-15 20:29 F2 12 66 00 00 00 00 60 6C 02 45 6C F5 EC 01 01 01 00 00 33 [20:29:25][I][CMD:572]: 2024-05-15 20:29 F2 16 66 00 00 00 00 61 63 02 45 43 F5 31 FB 45 6C F5 EC 03 01 01 01 8B [20:29:25][I][CMD:572]: 2024-05-15 20:29 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [20:29:25][I][vista_alarm:947]: Partition: 01 [20:29:25][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [20:29:25][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [20:29:25][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [20:29:25][I][vista_alarm:971]: Prompt: HOUSE
[20:29:25][I][vista_alarm:972]: Prompt: CHIME,Rdy to Arm [20:29:25][I][vista_alarm:973]: Beeps: 0 [20:29:25][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state ON [20:29:25][D][binary_sensor:036]: 'Front Door': Sending state OFF [20:29:25][D][text_sensor:064]: 'Zone Status (zs)': Sending state '' [20:29:25][W][component:237]: Component vista_alarm_panel took a long time for an operation (67 ms). [20:29:25][W][component:238]: Components should block for at most 30 ms. [20:29:25][I][CMD:572]: 2024-05-15 20:29 F6 01 00 00 00 00 00 00 00 00 00 00 00 [20:29:25][I][CHK:572]: 2024-05-15 20:29 E1 00 00 00 00 00 00 00 00 00 00 00 90 [20:29:25][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 57 FE FE EC 03 01 01 01 B9 [20:29:27][I][CMD:572]: 2024-05-15 20:29 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [20:29:27][I][vista_alarm:947]: Partition: 01 [20:29:27][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [20:29:27][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [20:29:27][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [20:29:27][I][vista_alarm:971]: Prompt: FAULT 01 FRONT
[20:29:27][I][vista_alarm:972]: Prompt: DOOR
[20:29:27][I][vista_alarm:973]: Beeps: 3 [20:29:27][D][binary_sensor:036]: 'Front Door': Sending state ON [20:29:27][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state OFF [20:29:27][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1' [20:29:27][W][component:237]: Component vista_alarm_panel took a long time for an operation (108 ms). [20:29:27][W][component:238]: Components should block for at most 30 ms. [20:29:27][I][CMD:572]: 2024-05-15 20:29 F2 12 66 00 00 00 00 62 6C 02 45 6C F5 EC 01 01 01 00 00 31 [20:29:28][I][CMD:572]: 2024-05-15 20:29 F2 16 66 00 00 00 00 63 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 83 [20:29:28][I][CMD:572]: 2024-05-15 20:29 F6 01 00 00 00 00 00 00 00 00 00 00 00 [20:29:28][I][CHK:572]: 2024-05-15 20:29 21 00 00 00 00 00 00 00 00 00 00 00 90 [20:29:28][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 50 FE FE EC 03 02 01 06 BA [20:29:28][I][CMD:572]: 2024-05-15 20:29 F6 01 00 00 00 00 00 00 00 00 00 00 00 [20:29:28][I][CHK:572]: 2024-05-15 20:29 61 00 00 00 00 00 00 00 00 00 00 00 90 [20:29:28][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 51 FE FE EC 03 02 01 06 B9 [20:29:30][I][CMD:572]: 2024-05-15 20:29 F2 12 66 00 00 00 00 64 6C 02 45 6C F5 EC 01 01 01 00 00 2F [20:29:30][I][CMD:572]: 2024-05-15 20:29 F2 16 66 00 00 00 00 65 63 02 45 43 F5 31 FB 45 6C F5 EC 03 01 01 01 87 [20:29:30][I][CMD:572]: 2024-05-15 20:29 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [20:29:30][I][vista_alarm:947]: Partition: 01 [20:29:30][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [20:29:30][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [20:29:30][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [20:29:30][I][vista_alarm:971]: Prompt: HOUSE
[20:29:30][I][vista_alarm:972]: Prompt: CHIME,Rdy to Arm [20:29:30][I][vista_alarm:973]: Beeps: 0 [20:29:30][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state ON [20:29:30][D][binary_sensor:036]: 'Front Door': Sending state OFF [20:29:30][D][text_sensor:064]: 'Zone Status (zs)': Sending state '' [20:29:30][W][component:237]: Component vista_alarm_panel took a long time for an operation (69 ms). [20:29:30][W][component:238]: Components should block for at most 30 ms. [20:29:30][I][CMD:572]: 2024-05-15 20:29 F6 01 00 00 00 00 00 00 00 00 00 00 00 [20:29:30][I][CHK:572]: 2024-05-15 20:29 A1 00 00 00 00 00 00 00 00 00 00 00 90 [20:29:30][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 52 FE FE EC 03 01 01 01 BE [20:29:32][I][CMD:572]: 2024-05-15 20:29 F2 12 66 00 00 00 00 66 6C 02 45 6C F5 EC 01 01 01 00 00 2D [20:29:32][I][CMD:572]: 2024-05-15 20:29 F2 16 66 00 00 00 00 67 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 7F [20:29:32][I][CMD:572]: 2024-05-15 20:29 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [20:29:32][I][vista_alarm:947]: Partition: 01 [20:29:32][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [20:29:32][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [20:29:32][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [20:29:32][I][vista_alarm:971]: Prompt: FAULT 01 FRONT
[20:29:32][I][vista_alarm:972]: Prompt: DOOR
[20:29:32][I][vista_alarm:973]: Beeps: 3 [20:29:32][D][binary_sensor:036]: 'Front Door': Sending state ON [20:29:32][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state OFF [20:29:32][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1' [20:29:32][W][component:237]: Component vista_alarm_panel took a long time for an operation (64 ms). [20:29:32][W][component:238]: Components should block for at most 30 ms. [20:29:32][I][CMD:572]: 2024-05-15 20:29 FA 01 02 25 F7 E7 00 00 00 00 00 00 00 [20:29:33][I][CMD:572]: 2024-05-15 20:29 F6 01 00 00 00 00 00 00 00 00 00 00 00 [20:29:33][I][CHK:572]: 2024-05-15 20:29 E1 00 00 00 00 00 00 00 00 00 00 00 90 [20:29:33][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 53 FE FE EC 03 02 01 06 B7 [20:29:34][I][CMD:572]: 2024-05-15 20:29 F2 12 66 00 00 00 00 60 6C 02 45 6C F5 EC 01 01 01 00 00 33 [20:29:35][I][CMD:572]: 2024-05-15 20:29 F2 16 66 00 00 00 00 61 63 02 45 43 F5 31 FB 45 6C F5 EC 03 01 01 01 8B [20:29:35][I][CMD:572]: 2024-05-15 20:29 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [20:29:35][I][vista_alarm:947]: Partition: 01 [20:29:35][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [20:29:35][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [20:29:35][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [20:29:35][I][vista_alarm:971]: Prompt: HOUSE
[20:29:35][I][vista_alarm:972]: Prompt: CHIME,Rdy to Arm [20:29:35][I][vista_alarm:973]: Beeps: 0 [20:29:35][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state ON [20:29:35][D][binary_sensor:036]: 'Front Door': Sending state OFF [20:29:35][D][text_sensor:064]: 'Zone Status (zs)': Sending state '' [20:29:35][W][component:237]: Component vista_alarm_panel took a long time for an operation (66 ms). [20:29:35][W][component:238]: Components should block for at most 30 ms. [20:29:35][I][CMD:572]: 2024-05-15 20:29 F6 01 00 00 00 00 00 00 00 00 00 00 00 [20:29:35][I][CHK:572]: 2024-05-15 20:29 21 00 00 00 00 00 00 00 00 00 00 00 90 [20:29:35][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 54 FE FE EC 03 01 01 01 BC [20:29:35][D][vista_alarm:748]: Taskupdates free memory: 1240

[20:29:36][I][CMD:572]: 2024-05-15 20:29 F2 12 66 00 00 00 00 62 6C 02 45 6C F5 EC 01 01 01 00 00 31 [20:29:36][I][CMD:572]: 2024-05-15 20:29 F2 16 66 00 00 00 00 63 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 83 [20:29:37][I][CMD:572]: 2024-05-15 20:29 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [20:29:37][I][vista_alarm:947]: Partition: 01 [20:29:37][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [20:29:37][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [20:29:37][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [20:29:37][I][vista_alarm:971]: Prompt: FAULT 01 FRONT
[20:29:37][I][vista_alarm:972]: Prompt: DOOR
[20:29:37][I][vista_alarm:973]: Beeps: 3 [20:29:37][D][binary_sensor:036]: 'Front Door': Sending state ON [20:29:37][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state OFF [20:29:37][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1' [20:29:37][W][component:237]: Component vista_alarm_panel took a long time for an operation (72 ms). [20:29:37][W][component:238]: Components should block for at most 30 ms. [20:29:37][I][CMD:572]: 2024-05-15 20:29 F6 01 00 00 00 00 00 00 00 00 00 00 00 [20:29:37][I][CHK:572]: 2024-05-15 20:29 61 00 00 00 00 00 00 00 00 00 00 00 90 [20:29:37][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 55 FE FE EC 03 02 01 06 B5 [20:29:37][I][CMD:572]: 2024-05-15 20:29 F6 01 00 00 00 00 00 00 00 00 00 00 00 [20:29:37][I][CHK:572]: 2024-05-15 20:29 A1 00 00 00 00 00 00 00 00 00 00 00 90 [20:29:37][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 56 FE EC 01 01 01 00 00 BB [20:29:38][I][CMD:572]: 2024-05-15 20:29 F6 01 00 00 00 00 00 00 00 00 00 00 00 [20:29:38][I][CHK:572]: 2024-05-15 20:29 E1 00 00 00 00 00 00 00 00 00 00 00 90 [20:29:38][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 57 FE FE EC 03 02 01 06 B3 [20:29:39][I][CMD:572]: 2024-05-15 20:29 F2 12 66 00 00 00 00 64 6C 02 45 6C F5 EC 01 01 01 00 00 2F [20:29:39][I][CMD:572]: 2024-05-15 20:29 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [20:29:39][I][vista_alarm:947]: Partition: 01 [20:29:39][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [20:29:39][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [20:29:39][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [20:29:39][I][vista_alarm:971]: Prompt: HOUSE
[20:29:39][I][vista_alarm:972]: Prompt: CHIME,Rdy to Arm [20:29:39][I][vista_alarm:973]: Beeps: 0 [20:29:39][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state ON [20:29:39][D][binary_sensor:036]: 'Front Door': Sending state OFF [20:29:39][D][text_sensor:064]: 'Zone Status (zs)': Sending state '' [20:29:39][W][component:237]: Component vista_alarm_panel took a long time for an operation (117 ms). [20:29:39][W][component:238]: Components should block for at most 30 ms. [20:29:39][I][CMD:572]: 2024-05-15 20:29 F2 16 66 00 00 00 00 65 63 02 45 43 F5 31 FB 45 6C F5 EC 03 01 01 01 87 [20:29:39][I][CMD:572]: 2024-05-15 20:29 F6 01 00 00 00 00 00 00 00 00 00 00 00 [20:29:39][I][CHK:572]: 2024-05-15 20:29 21 00 00 00 00 00 00 00 00 00 00 00 90 [20:29:39][I][CMD:572]: 2024-05-15 20:29 F2 0E 02 00 00 00 00 50 FE FE EC 03 01 01 01 C0 [20:29:43][I][CMD:572]: 2024-05-15 20:29 F7 02 00 1D 10 08 00 1C 28 02 00 00 48

rwoldberg avatar May 16 '24 02:05 rwoldberg

Thank you ! It looks like you are missing the module data side of it. Do you have the monitor line hooked up on your circuit? This is the "monitorpin" config in the yaml. It is not showing data there. For instance it should show data sent from the keypads/expanders/etc to the panel. This is very useful for capturing expander open/close events to immediately close zones that are hooked up to the expanders or RF modules. You should be seeing EXT:xxx messages when the line is connected.

This is a main component of the info I was looking for. Namely what the AUI keypad is sending to the panel to retrieve status data. The F6: cmds show the requests.

Dilbert66 avatar May 16 '24 11:05 Dilbert66

I do have it connected, but maybe it is not connected correctly, I will take a look at my board.

rwoldberg avatar May 16 '24 12:05 rwoldberg

I had the wire on the wrong pin, oops, here is the output from opening and closing the front door multiple times:

[07:42:25][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [07:42:25][I][vista_alarm:971]: Prompt: FAULT 06 SOUTH
[07:42:25][I][vista_alarm:972]: Prompt: GUEST ROOM
[07:42:25][I][vista_alarm:973]: Beeps: 0 [07:42:25][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:25][I][EXT:572]: 2024-05-17 07:42 F6 01 A1 0C 00 6E 62 02 45 43 F5 31 FB [07:42:25][I][CHK:572]: 2024-05-17 07:42 A1 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:25][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 56 FE FE EC 03 02 01 06 B4 [07:42:28][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:28][I][CHK:572]: 2024-05-17 07:42 E1 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:28][I][EXT:572]: 2024-05-17 07:42 F6 01 E1 07 00 6F 05 02 43 43 1C 00 00 [07:42:28][W][component:237]: Component vista_alarm_panel took a long time for an operation (53 ms). [07:42:28][W][component:238]: Components should block for at most 30 ms. [07:42:28][I][CMD:572]: 2024-05-17 07:42 F2 16 02 00 00 00 00 57 FE EC 32 34 30 35 31 37 30 37 34 32 30 32 35 1E [07:42:29][I][CMD:572]: 2024-05-17 07:42 F2 12 66 00 00 00 00 60 6C 02 45 6C F5 EC 01 01 01 00 00 33 [07:42:29][I][CMD:572]: 2024-05-17 07:42 F2 16 66 00 00 00 00 61 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 85 [07:42:29][I][CMD:572]: 2024-05-17 07:42 F7 02 00 1D 10 03 00 00 28 02 00 00 46 [07:42:29][I][vista_alarm:947]: Partition: 01 [07:42:29][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 03 MOTION ' [07:42:29][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DETECTOR ' [07:42:29][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [07:42:29][I][vista_alarm:971]: Prompt: FAULT 03 MOTION [07:42:29][I][vista_alarm:972]: Prompt: DETECTOR
[07:42:29][I][vista_alarm:973]: Beeps: 0 [07:42:29][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:29][I][EXT:572]: 2024-05-17 07:42 F6 01 21 00 68 62 02 45 43 F5 31 FB 43 [07:42:29][I][CHK:572]: 2024-05-17 07:42 21 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:29][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 50 FE FE EC 03 02 01 06 BA [07:42:32][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:32][I][CHK:572]: 2024-05-17 07:42 61 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:32][I][EXT:572]: 2024-05-17 07:42 F6 01 61 07 00 69 6B 02 43 43 3C 00 00 [07:42:32][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 51 FE EC 01 01 01 00 00 C0 [07:42:33][I][CMD:572]: 2024-05-17 07:42 F7 02 00 1D 10 06 00 00 28 02 00 00 46 [07:42:33][I][vista_alarm:947]: Partition: 01 [07:42:33][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 06 SOUTH ' [07:42:33][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'GUEST ROOM ' [07:42:33][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [07:42:33][I][vista_alarm:971]: Prompt: FAULT 06 SOUTH
[07:42:33][I][vista_alarm:972]: Prompt: GUEST ROOM
[07:42:33][I][vista_alarm:973]: Beeps: 0 [07:42:33][D][binary_sensor:036]: 'Deck Sliding Door': Sending state OFF [07:42:33][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:3,OP:6,OP:10,OP:11' [07:42:33][W][component:237]: Component vista_alarm_panel took a long time for an operation (61 ms). [07:42:33][W][component:238]: Components should block for at most 30 ms. [07:42:33][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:33][I][CHK:572]: 2024-05-17 07:42 A1 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:33][I][EXT:572]: 2024-05-17 07:42 F6 01 A1 0C 00 6A 62 02 45 43 F5 31 FB [07:42:33][I][CMD:572]: 2024-05-17 07:42 F2 0E 00 00 00 00 52 FE FE EC 03 02 77 06 B8 00 [07:42:33][I][CMD:572]: 2024-05-17 07:42 F2 12 66 00 00 00 00 62 6C 02 45 6C F5 EC 01 01 01 00 00 31 [07:42:33][I][CMD:572]: 2024-05-17 07:42 F2 16 66 00 00 00 00 63 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 83 [07:42:33][I][CMD:572]: 2024-05-17 07:42 F7 02 00 1D 10 10 00 00 28 02 00 00 46 [07:42:33][I][vista_alarm:947]: Partition: 01 [07:42:33][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 10 MASTER ' [07:42:33][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'BEDROOM ' [07:42:33][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [07:42:33][I][vista_alarm:971]: Prompt: FAULT 10 MASTER [07:42:33][I][vista_alarm:972]: Prompt: BEDROOM
[07:42:33][I][vista_alarm:973]: Beeps: 0 [07:42:34][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:34][I][CHK:572]: 2024-05-17 07:42 E1 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:34][I][EXT:572]: 2024-05-17 07:42 F6 01 E1 00 6B 62 02 45 43 F5 31 FB 43 [07:42:34][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 53 FE FE EC 03 02 01 06 B7 [07:42:36][I][CMD:572]: 2024-05-17 07:42 F2 12 66 00 00 00 00 64 6C 02 45 6C F5 EC 01 01 01 00 00 2F [07:42:36][I][CMD:572]: 2024-05-17 07:42 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [07:42:36][I][vista_alarm:947]: Partition: 01 [07:42:36][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [07:42:36][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [07:42:36][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [07:42:36][I][vista_alarm:971]: Prompt: FAULT 01 FRONT
[07:42:36][I][vista_alarm:972]: Prompt: DOOR
[07:42:36][I][vista_alarm:973]: Beeps: 3 [07:42:36][D][binary_sensor:036]: 'Front Door': Sending state ON [07:42:36][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1,OP:3,OP:6,OP:10,OP:11' [07:42:36][W][component:237]: Component vista_alarm_panel took a long time for an operation (64 ms). [07:42:36][W][component:238]: Components should block for at most 30 ms. [07:42:36][I][CMD:572]: 2024-05-17 07:42 F2 16 66 00 00 00 00 65 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 81 [07:42:36][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:36][I][CHK:572]: 2024-05-17 07:42 21 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:36][I][EXT:572]: 2024-05-17 07:42 F6 01 21 0C 00 6C 62 02 45 43 F5 31 FB [07:42:36][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 54 FE FE EC 03 02 01 06 B6 [07:42:38][I][CMD:572]: 2024-05-17 07:42 F2 12 66 00 00 00 00 66 6C 02 45 6C F5 EC 01 01 01 00 00 2D [07:42:38][I][CMD:572]: 2024-05-17 07:42 F7 02 00 1D 10 06 00 00 28 02 00 00 46 [07:42:38][I][vista_alarm:947]: Partition: 01 [07:42:38][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 06 SOUTH ' [07:42:38][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'GUEST ROOM ' [07:42:38][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [07:42:38][I][vista_alarm:971]: Prompt: FAULT 06 SOUTH
[07:42:38][I][vista_alarm:972]: Prompt: GUEST ROOM
[07:42:38][I][vista_alarm:973]: Beeps: 0 [07:42:38][D][binary_sensor:036]: 'Patio Sliding Door': Sending state OFF [07:42:38][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1,OP:3,OP:6,OP:10' [07:42:38][W][component:237]: Component vista_alarm_panel took a long time for an operation (62 ms). [07:42:38][W][component:238]: Components should block for at most 30 ms. [07:42:38][I][CMD:572]: 2024-05-17 07:42 F2 16 66 00 00 00 00 67 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 7F [07:42:38][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:38][I][EXT:572]: 2024-05-17 07:42 F6 01 61 0C 00 6D 62 02 45 43 F5 31 FB [07:42:38][I][CHK:572]: 2024-05-17 07:42 61 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:38][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 55 FE FE EC 03 02 01 06 B5 [07:42:41][I][CMD:572]: 2024-05-17 07:42 FA 01 02 20 F7 EC 00 00 00 00 00 00 00 [07:42:41][I][EXT:572]: 2024-05-17 07:42 FA 07 F7 00 70 00 00 00 00 00 00 00 00 [07:42:41][D][binary_sensor:036]: 'Deck Sliding Door': Sending state ON [07:42:41][D][binary_sensor:036]: 'Patio Sliding Door': Sending state ON [07:42:41][I][CMD:572]: 2024-05-17 07:42 F2 12 66 00 00 00 00 60 6C 02 45 6C F5 EC 01 01 01 00 00 33 [07:42:41][I][CMD:572]: 2024-05-17 07:42 F2 16 66 00 00 00 00 61 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 85 [07:42:41][I][CMD:572]: 2024-05-17 07:42 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [07:42:41][I][vista_alarm:947]: Partition: 01 [07:42:41][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [07:42:41][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [07:42:41][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [07:42:41][I][vista_alarm:971]: Prompt: FAULT 01 FRONT
[07:42:41][I][vista_alarm:972]: Prompt: DOOR
[07:42:41][I][vista_alarm:973]: Beeps: 3 [07:42:41][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1,OP:3,OP:6,OP:10,OP:11,OP:12' [07:42:41][W][component:237]: Component vista_alarm_panel took a long time for an operation (59 ms). [07:42:41][W][component:238]: Components should block for at most 30 ms. [07:42:41][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:42][I][EXT:572]: 2024-05-17 07:42 F6 01 A1 0C 00 6E 62 02 45 43 F5 31 FB [07:42:42][I][CHK:572]: 2024-05-17 07:42 A1 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:42][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 56 FE FE EC 03 02 01 06 B4 [07:42:43][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:43][I][CHK:572]: 2024-05-17 07:42 E1 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:43][I][EXT:572]: 2024-05-17 07:42 F6 01 E1 0C 00 6F 62 02 45 43 F5 31 FB [07:42:43][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 57 FE FE EC 03 02 01 06 B3 [07:42:44][I][CMD:572]: 2024-05-17 07:42 F2 12 66 00 00 00 00 62 6C 02 45 6C F5 EC 01 01 01 00 00 31 [07:42:44][I][CMD:572]: 2024-05-17 07:42 F2 16 66 00 00 00 00 63 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 83 [07:42:44][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:44][I][EXT:572]: 2024-05-17 07:42 F6 01 21 0C 00 68 62 02 45 43 F5 31 FB [07:42:44][I][CHK:572]: 2024-05-17 07:42 21 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:44][I][CMD:572]: 2024-05-17 07:42 F7 02 00 1D 10 06 00 00 28 02 00 00 46 [07:42:44][I][vista_alarm:947]: Partition: 01 [07:42:44][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 06 SOUTH ' [07:42:44][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'GUEST ROOM ' [07:42:44][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [07:42:44][I][vista_alarm:971]: Prompt: FAULT 06 SOUTH
[07:42:44][I][vista_alarm:972]: Prompt: GUEST ROOM
[07:42:44][I][vista_alarm:973]: Beeps: 0 [07:42:44][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 50 FE FE EC 03 02 01 06 BA [07:42:46][I][CMD:572]: 2024-05-17 07:42 F2 12 66 00 00 00 00 64 6C 02 45 6C F5 EC 01 01 01 00 00 2F [07:42:46][I][CMD:572]: 2024-05-17 07:42 F2 16 66 00 00 00 00 65 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 81 [07:42:46][I][CMD:572]: 2024-05-17 07:42 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [07:42:46][I][vista_alarm:947]: Partition: 01 [07:42:46][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [07:42:46][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [07:42:46][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [07:42:46][I][vista_alarm:971]: Prompt: FAULT 01 FRONT
[07:42:46][I][vista_alarm:972]: Prompt: DOOR
[07:42:46][I][vista_alarm:973]: Beeps: 3 [07:42:46][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:46][I][EXT:572]: 2024-05-17 07:42 F6 01 61 0C 00 69 62 02 45 43 F5 31 FB [07:42:46][I][CHK:572]: 2024-05-17 07:42 61 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:47][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 51 FE FE EC 03 02 01 06 B9 [07:42:48][I][CMD:572]: 2024-05-17 07:42 F2 12 66 00 00 00 00 66 6C 02 45 6C F5 EC 01 01 01 00 00 2D [07:42:49][I][CMD:572]: 2024-05-17 07:42 F2 16 66 00 00 00 00 67 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 7F [07:42:49][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:49][I][EXT:572]: 2024-05-17 07:42 F6 01 A1 00 6A 62 02 45 43 F5 31 FB 43 [07:42:49][I][CHK:572]: 2024-05-17 07:42 A1 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:49][I][CMD:572]: 2024-05-17 07:42 F7 02 00 1D 10 06 00 00 28 02 00 00 46 [07:42:49][I][vista_alarm:947]: Partition: 01 [07:42:49][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 06 SOUTH ' [07:42:49][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'GUEST ROOM ' [07:42:49][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [07:42:49][I][vista_alarm:971]: Prompt: FAULT 06 SOUTH
[07:42:49][I][vista_alarm:972]: Prompt: GUEST ROOM
[07:42:49][I][vista_alarm:973]: Beeps: 0 [07:42:49][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 52 FE FE EC 03 02 01 06 B8 [07:42:50][I][CMD:572]: 2024-05-17 07:42 F2 12 66 00 00 00 00 60 6C 02 45 6C F5 EC 01 01 01 00 00 33 [07:42:50][I][CMD:572]: 2024-05-17 07:42 F2 16 66 00 00 00 00 61 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 85 [07:42:51][I][CMD:572]: 2024-05-17 07:42 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [07:42:51][I][vista_alarm:947]: Partition: 01 [07:42:51][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [07:42:51][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [07:42:51][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [07:42:51][I][vista_alarm:971]: Prompt: FAULT 01 FRONT
[07:42:51][I][vista_alarm:972]: Prompt: DOOR
[07:42:51][I][vista_alarm:973]: Beeps: 3 [07:42:51][D][binary_sensor:036]: 'Living Room Motion Detector': Sending state OFF [07:42:51][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1,OP:6,OP:10,OP:11,OP:12' [07:42:51][W][component:237]: Component vista_alarm_panel took a long time for an operation (62 ms). [07:42:51][W][component:238]: Components should block for at most 30 ms. [07:42:51][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:51][I][EXT:572]: 2024-05-17 07:42 F6 01 E1 00 6B 62 02 45 43 F5 31 FB 43 [07:42:51][I][CHK:572]: 2024-05-17 07:42 E1 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:51][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 53 FE FE EC 03 02 01 06 B7 [07:42:53][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:53][I][EXT:572]: 2024-05-17 07:42 F6 01 21 00 6C 62 02 45 43 F5 31 FB 43 [07:42:53][I][CHK:572]: 2024-05-17 07:42 21 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:53][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 54 FE FE EC 03 02 01 06 B6 [07:42:53][I][CMD:572]: 2024-05-17 07:42 F2 12 66 00 00 00 00 62 6C 02 45 6C F5 EC 01 01 01 00 00 31 [07:42:53][I][CMD:572]: 2024-05-17 07:42 F2 16 66 00 00 00 00 63 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 83 [07:42:53][D][vista_alarm:748][cmdQueueTask]: Taskupdates free memory: 1188

[07:42:53][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'GUEST ROOM ' [07:42:53][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [07:42:53][I][vista_alarm:971]: Prompt: FAULT 06 SOUTH
[07:42:53][I][vista_alarm:972]: Prompt: GUEST ROOM
[07:42:53][I][vista_alarm:973]: Beeps: 0 [07:42:53][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:53][I][CHK:572]: 2024-05-17 07:42 61 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:53][I][EXT:572]: 2024-05-17 07:42 F6 01 61 0C 00 6D 62 02 45 43 F5 31 FB [07:42:53][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 55 FE FE EC 03 02 01 06 B5 [07:42:55][I][CMD:572]: 2024-05-17 07:42 F2 12 66 00 00 00 00 64 6C 02 45 6C F5 EC 01 01 01 00 00 2F [07:42:55][I][CMD:572]: 2024-05-17 07:42 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [07:42:55][I][vista_alarm:947]: Partition: 01 [07:42:55][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [07:42:55][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [07:42:55][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [07:42:55][I][vista_alarm:971]: Prompt: FAULT 01 FRONT
[07:42:55][I][vista_alarm:972]: Prompt: DOOR
[07:42:55][I][vista_alarm:973]: Beeps: 3 [07:42:56][I][CMD:572]: 2024-05-17 07:42 F2 16 66 00 00 00 00 65 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 81 [07:42:56][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:56][I][EXT:572]: 2024-05-17 07:42 F6 01 A1 0C 00 6E 62 02 45 43 F5 31 FB [07:42:56][I][CHK:572]: 2024-05-17 07:42 A1 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:56][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 56 FE FE EC 03 02 01 06 B4 [07:42:57][I][CMD:572]: 2024-05-17 07:42 F2 12 66 00 00 00 00 66 6C 02 45 6C F5 EC 01 01 01 00 00 2D [07:42:57][I][CMD:572]: 2024-05-17 07:42 F7 02 00 1D 10 06 00 00 28 02 00 00 46 [07:42:57][I][vista_alarm:947]: Partition: 01 [07:42:57][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 06 SOUTH ' [07:42:57][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'GUEST ROOM ' [07:42:57][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [07:42:57][I][vista_alarm:971]: Prompt: FAULT 06 SOUTH
[07:42:57][I][vista_alarm:972]: Prompt: GUEST ROOM
[07:42:57][I][vista_alarm:973]: Beeps: 0 [07:42:57][I][CMD:572]: 2024-05-17 07:42 F2 16 66 00 00 00 00 67 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 7F [07:42:57][I][CMD:572]: 2024-05-17 07:42 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:42:57][I][EXT:572]: 2024-05-17 07:42 F6 01 E1 0C 00 6F 62 02 45 43 F5 31 FB [07:42:57][I][CHK:572]: 2024-05-17 07:42 E1 00 00 00 00 00 00 00 00 00 00 00 90 [07:42:57][I][CMD:572]: 2024-05-17 07:42 F2 0E 02 00 00 00 00 57 FE FE EC 03 02 01 06 B3 [07:43:01][D][vista_alarm:797]: Force refresh.... [07:43:01][I][CMD:572]: 2024-05-17 07:43 F7 02 00 1D 10 10 00 00 28 02 00 00 46 [07:43:01][I][vista_alarm:947]: Partition: 01 [07:43:01][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 10 MASTER ' [07:43:01][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'BEDROOM ' [07:43:01][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [07:43:01][I][vista_alarm:971]: Prompt: FAULT 10 MASTER [07:43:01][I][vista_alarm:972]: Prompt: BEDROOM
[07:43:01][I][vista_alarm:973]: Beeps: 0 [07:43:01][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1,OP:6,OP:10,OP:11,OP:12' [07:43:01][W][component:237]: Component vista_alarm_panel took a long time for an operation (65 ms). [07:43:01][W][component:238]: Components should block for at most 30 ms. [07:43:01][I][CMD:572]: 2024-05-17 07:43 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:43:01][I][CHK:572]: 2024-05-17 07:43 21 00 00 00 00 00 00 00 00 00 00 00 90 [07:43:02][I][EXT:572]: 2024-05-17 07:43 F6 01 21 0C 00 68 6B 0B 45 43 F5 33 FB [07:43:02][I][CMD:572]: 2024-05-17 07:43 F2 0A 02 00 00 00 00 50 FE FE 30 86 [07:43:02][I][CMD:572]: 2024-05-17 07:43 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:43:02][I][EXT:572]: 2024-05-17 07:43 F6 01 61 07 00 69 6B 02 43 43 3C 00 00 [07:43:02][I][CHK:572]: 2024-05-17 07:43 61 00 00 00 00 00 00 00 00 00 00 00 90 [07:43:02][I][CMD:572]: 2024-05-17 07:43 F2 0E 02 00 00 00 00 51 FE EC 01 01 01 00 00 C0 [07:43:02][I][CMD:572]: 2024-05-17 07:43 F6 01 00 00 00 00 00 00 00 00 00 00 00 [07:43:03][I][CHK:572]: 2024-05-17 07:43 A1 00 00 00 00 00 00 00 00 00 00 00 90 [07:43:03][I][EXT:572]: 2024-05-17 07:43 F6 01 A1 0C 00 6A 62 02 45 43 F5 31 FB [07:43:03][I][CMD:572]: 2024-05-17 07:43 F2 0E 02 00 00 00 00 52 FE FE EC 03 02 01 06 B8 [07:43:05][I][CMD:572]: 2024-05-17 07:43 F7 02 00 1D 10 11 00 00 28 02 00 00 46

rwoldberg avatar May 17 '24 13:05 rwoldberg

Awesome tks! Can I ask you another favor? I see that my f6 cmd log size is too small. I've updated the code to fully display the cmd so that we can capture the data sent from the display fully. If you look in your log, the EXT f6 cmds are what the keypad sends to the panel and the F2's are the resultant responses back. Can you recompile to pick up the latest update and do this log again? Much appreciated. I'm hoping to capture the cmds related to zone status.

Edit: Actually , you dont need to capture again. I figured out the cmds sent. Tks!

Dilbert66 avatar May 17 '24 15:05 Dilbert66

Here is the log with the latest code: [11:53:03][W][component:237]: Component vista_alarm_panel took a long time for an operation (106 ms). [11:53:03][W][component:238]: Components should block for at most 30 ms. [11:53:03][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 50 FE FE EC 03 01 01 01 C0 00 [11:53:05][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:05][I][EXT:588]: 2024-05-18 11:53 F6 01 61 07 00 69 6B 02 43 43 3C 00 00 [11:53:05][I][CHK:588]: 2024-05-18 11:53 61 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:06][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 51 FE EC 01 01 01 00 00 C0 [11:53:06][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:07][I][CHK:588]: 2024-05-18 11:53 A1 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:07][I][EXT:588]: 2024-05-18 11:53 F6 01 A1 0C 00 6A 62 02 45 43 F5 31 FB [11:53:07][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 52 FE FE EC 03 01 01 01 BE [11:53:07][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [11:53:07][I][vista_alarm:963]: Partition: 01 [11:53:07][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [11:53:07][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [11:53:07][I][vista_alarm:987]: Prompt: HOUSE
[11:53:07][I][vista_alarm:988]: Prompt: CHIME,Rdy to Arm [11:53:07][I][vista_alarm:989]: Beeps: 0 [11:53:11][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 62 6C 02 45 6C F5 EC 01 01 01 00 00 31 [11:53:11][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 63 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 83 [11:53:11][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 03 00 00 28 02 00 00 46 [11:53:11][I][vista_alarm:963]: Partition: 01 [11:53:11][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 03 MOTION ' [11:53:11][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DETECTOR ' [11:53:11][I][vista_alarm:987]: Prompt: FAULT 03 MOTION [11:53:11][I][vista_alarm:988]: Prompt: DETECTOR
[11:53:11][I][vista_alarm:989]: Beeps: 0 [11:53:11][D][binary_sensor:036]: 'Living Room Motion Detector': Sending state ON [11:53:11][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state OFF [11:53:11][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:3' [11:53:11][W][component:237]: Component vista_alarm_panel took a long time for an operation (64 ms). [11:53:11][W][component:238]: Components should block for at most 30 ms. [11:53:11][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:11][I][EXT:588]: 2024-05-18 11:53 F6 01 E1 00 6B 62 02 45 43 F5 31 FB 43 [11:53:11][I][CHK:588]: 2024-05-18 11:53 E1 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:11][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 53 FE FE EC 03 02 01 06 B7 [11:53:15][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 03 00 00 28 02 00 00 46 [11:53:15][I][vista_alarm:963]: Partition: 01 [11:53:15][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 03 MOTION ' [11:53:15][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DETECTOR ' [11:53:15][I][vista_alarm:987]: Prompt: FAULT 03 MOTION [11:53:15][I][vista_alarm:988]: Prompt: DETECTOR
[11:53:15][I][vista_alarm:989]: Beeps: 0 [11:53:16][D][vista_alarm:764][cmdQueueTask]: Taskupdates free memory: 1164

[11:53:16][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:16][I][CHK:588]: 2024-05-18 11:53 21 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:16][I][EXT:588]: 2024-05-18 11:53 F6 01 21 0C 00 6C 62 02 45 43 F5 31 FB [11:53:16][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 54 FE FE EC 03 02 01 06 B6 [11:53:17][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [11:53:17][I][vista_alarm:963]: Partition: 01 [11:53:17][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [11:53:17][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [11:53:17][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [11:53:17][I][vista_alarm:987]: Prompt: FAULT 01 FRONT
[11:53:17][I][vista_alarm:988]: Prompt: DOOR
[11:53:17][I][vista_alarm:989]: Beeps: 3 [11:53:17][D][binary_sensor:036]: 'Front Door': Sending state ON [11:53:17][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1,OP:3' [11:53:18][W][component:237]: Component vista_alarm_panel took a long time for an operation (62 ms). [11:53:18][W][component:238]: Components should block for at most 30 ms. [11:53:18][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 64 6C 02 45 6C F5 EC 01 01 01 00 00 2F [11:53:18][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 65 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 81 [11:53:18][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:18][I][EXT:588]: 2024-05-18 11:53 F6 01 61 00 6D 62 02 45 43 F5 31 FB 43 [11:53:18][I][CHK:588]: 2024-05-18 11:53 61 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:18][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 01 00 00 28 02 00 00 46 [11:53:18][I][vista_alarm:963]: Partition: 01 [11:53:18][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [11:53:18][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [11:53:18][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [11:53:18][I][vista_alarm:987]: Prompt: FAULT 01 FRONT
[11:53:18][I][vista_alarm:988]: Prompt: DOOR
[11:53:18][I][vista_alarm:989]: Beeps: 0 [11:53:18][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 55 FE FE EC 03 02 01 06 B5 [11:53:19][I][CMD:588]: 2024-05-18 11:53 F9 43 02 53 6F 00 00 00 00 00 00 00 00 [11:53:19][I][CHK:588]: 2024-05-18 11:53 78 83 00 00 00 00 00 00 00 00 00 00 00 [11:53:19][I][EXT:588]: 2024-05-18 11:53 F9 00 83 04 00 00 00 79 00 00 00 00 00 [11:53:19][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 66 6C 02 45 6C F5 EC 01 01 01 00 00 2D [11:53:19][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [11:53:19][I][vista_alarm:963]: Partition: 01 [11:53:19][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [11:53:19][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [11:53:19][I][vista_alarm:987]: Prompt: HOUSE
[11:53:19][I][vista_alarm:988]: Prompt: CHIME,Rdy to Arm [11:53:19][I][vista_alarm:989]: Beeps: 0 [11:53:19][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state ON [11:53:19][D][binary_sensor:036]: 'Front Door': Sending state OFF [11:53:19][D][binary_sensor:036]: 'Living Room Motion Detector': Sending state OFF [11:53:19][D][text_sensor:064]: 'Zone Status (zs)': Sending state '' [11:53:19][W][component:237]: Component vista_alarm_panel took a long time for an operation (119 ms). [11:53:19][W][component:238]: Components should block for at most 30 ms. [11:53:19][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 67 63 02 45 43 F5 31 FB 45 6C F5 EC 03 01 01 01 85 [11:53:20][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:20][I][CHK:588]: 2024-05-18 11:53 A1 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:20][I][EXT:588]: 2024-05-18 11:53 F6 01 A1 0C 00 6E 62 02 45 43 F5 31 FB [11:53:20][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 56 FE FE EC 03 01 01 01 BA [11:53:21][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 60 6C 02 45 6C F5 EC 01 01 01 00 00 33 [11:53:21][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 61 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 85 [11:53:22][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [11:53:22][I][vista_alarm:963]: Partition: 01 [11:53:22][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [11:53:22][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [11:53:22][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [11:53:22][I][vista_alarm:987]: Prompt: FAULT 01 FRONT
[11:53:22][I][vista_alarm:988]: Prompt: DOOR
[11:53:22][I][vista_alarm:989]: Beeps: 3 [11:53:22][D][binary_sensor:036]: 'Front Door': Sending state ON [11:53:22][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state OFF [11:53:22][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1' [11:53:22][W][component:237]: Component vista_alarm_panel took a long time for an operation (65 ms). [11:53:22][W][component:238]: Components should block for at most 30 ms. [11:53:22][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:22][I][EXT:588]: 2024-05-18 11:53 F6 01 E1 0C 00 6F 62 02 45 43 F5 31 FB [11:53:22][I][CHK:588]: 2024-05-18 11:53 E1 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:22][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 57 FE FE EC 03 02 01 06 B3 [11:53:23][I][CMD:588]: 2024-05-18 11:53 FA 01 02 25 F7 E7 00 00 00 00 00 00 00 [11:53:23][I][EXT:588]: 2024-05-18 11:53 FA 07 F7 00 00 00 00 00 00 00 00 00 00 [11:53:24][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 62 6C 02 45 6C F5 EC 01 01 01 00 00 31 [11:53:24][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 63 63 02 45 43 F5 31 FB 45 6C F5 EC 03 01 01 01 89 [11:53:24][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [11:53:24][I][vista_alarm:963]: Partition: 01 [11:53:24][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [11:53:25][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [11:53:25][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [11:53:25][I][vista_alarm:987]: Prompt: HOUSE
[11:53:25][I][vista_alarm:988]: Prompt: CHIME,Rdy to Arm [11:53:25][I][vista_alarm:989]: Beeps: 0 [11:53:25][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state ON [11:53:25][D][binary_sensor:036]: 'Front Door': Sending state OFF [11:53:25][D][text_sensor:064]: 'Zone Status (zs)': Sending state '' [11:53:25][W][component:237]: Component vista_alarm_panel took a long time for an operation (66 ms). [11:53:25][W][component:238]: Components should block for at most 30 ms. [11:53:25][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:25][I][CHK:588]: 2024-05-18 11:53 21 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:25][I][EXT:588]: 2024-05-18 11:53 F6 01 21 0C 00 68 62 02 45 43 F5 31 FB [11:53:25][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 50 FE FE EC 03 01 01 01 C0 [11:53:26][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:26][I][EXT:588]: 2024-05-18 11:53 F6 01 61 0C 00 69 62 02 45 43 F5 31 FB [11:53:26][I][CHK:588]: 2024-05-18 11:53 61 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:26][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 51 FE FE EC 03 01 01 01 BF [11:53:27][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 64 6C 02 45 6C F5 EC 01 01 01 00 00 2F [11:53:27][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 65 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 81 [11:53:28][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [11:53:28][I][vista_alarm:963]: Partition: 01 [11:53:28][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [11:53:28][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [11:53:28][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [11:53:28][I][vista_alarm:987]: Prompt: FAULT 01 FRONT
[11:53:28][I][vista_alarm:988]: Prompt: DOOR
[11:53:28][I][vista_alarm:989]: Beeps: 3 [11:53:28][D][binary_sensor:036]: 'Front Door': Sending state ON [11:53:28][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state OFF [11:53:28][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1' [11:53:28][W][component:237]: Component vista_alarm_panel took a long time for an operation (61 ms). [11:53:28][W][component:238]: Components should block for at most 30 ms. [11:53:28][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:28][I][EXT:588]: 2024-05-18 11:53 F6 01 A1 0C 00 6A 62 02 45 43 F5 31 FB [11:53:28][I][CHK:588]: 2024-05-18 11:53 A1 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:28][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 52 FE FE EC 03 02 01 06 B8 [11:53:30][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 66 6C 02 45 6C F5 EC 01 01 01 00 00 2D [11:53:30][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [11:53:30][I][vista_alarm:963]: Partition: 01 [11:53:30][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [11:53:30][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [11:53:30][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [11:53:30][I][vista_alarm:987]: Prompt: HOUSE
[11:53:30][I][vista_alarm:988]: Prompt: CHIME,Rdy to Arm [11:53:30][I][vista_alarm:989]: Beeps: 0 [11:53:30][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state ON [11:53:30][D][binary_sensor:036]: 'Front Door': Sending state OFF [11:53:30][D][text_sensor:064]: 'Zone Status (zs)': Sending state '' [11:53:30][W][component:237]: Component vista_alarm_panel took a long time for an operation (119 ms). [11:53:30][W][component:238]: Components should block for at most 30 ms. [11:53:30][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 67 63 02 45 43 F5 31 FB 45 6C F5 EC 03 01 01 01 85 [11:53:30][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:31][I][EXT:588]: 2024-05-18 11:53 F6 01 E1 0C 00 6B 62 02 45 43 F5 31 FB [11:53:31][I][CHK:588]: 2024-05-18 11:53 E1 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:31][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 53 FE FE EC 03 01 01 01 BD [11:53:34][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [11:53:34][I][vista_alarm:963]: Partition: 01 [11:53:34][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [11:53:34][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [11:53:34][I][vista_alarm:987]: Prompt: HOUSE
[11:53:34][I][vista_alarm:988]: Prompt: CHIME,Rdy to Arm [11:53:34][I][vista_alarm:989]: Beeps: 0 [11:53:35][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 60 6C 02 45 6C F5 EC 01 01 01 00 00 33 [11:53:35][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [11:53:35][I][vista_alarm:963]: Partition: 01 [11:53:35][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [11:53:35][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [11:53:35][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [11:53:35][I][vista_alarm:987]: Prompt: FAULT 01 FRONT
[11:53:35][I][vista_alarm:988]: Prompt: DOOR
[11:53:35][I][vista_alarm:989]: Beeps: 3 [11:53:35][D][binary_sensor:036]: 'Front Door': Sending state ON [11:53:35][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state OFF [11:53:35][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1' [11:53:35][W][component:237]: Component vista_alarm_panel took a long time for an operation (118 ms). [11:53:35][W][component:238]: Components should block for at most 30 ms. [11:53:35][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 61 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 85 [11:53:35][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:35][I][EXT:588]: 2024-05-18 11:53 F6 01 21 00 6C 6B 0B 45 43 F5 33 FB 43 [11:53:35][I][CHK:588]: 2024-05-18 11:53 21 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:35][I][CMD:588]: 2024-05-18 11:53 F2 0A 02 00 00 00 00 54 FE FE 32 80 [11:53:35][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:35][I][CHK:588]: 2024-05-18 11:53 61 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:35][I][EXT:588]: 2024-05-18 11:53 F6 01 61 07 00 6D 6B 02 43 43 38 00 00 [11:53:35][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 55 FE EC 01 01 01 00 00 BC [11:53:35][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:36][I][EXT:588]: 2024-05-18 11:53 F6 01 A1 00 6E 62 02 45 43 F5 31 FB 43 [11:53:36][I][CHK:588]: 2024-05-18 11:53 A1 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:36][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 56 FE FE EC 03 02 01 06 B4 [11:53:36][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:36][I][EXT:588]: 2024-05-18 11:53 F6 01 E1 00 6F 62 02 45 43 F5 31 FB 43 [11:53:36][I][CHK:588]: 2024-05-18 11:53 E1 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:36][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 57 FE FE EC 03 02 01 06 B3 [11:53:37][D][sensor:094]: 'Heap Free': Sending state 179892.00000 B with 0 decimals of accuracy [11:53:37][D][sensor:094]: 'Heap Max Block': Sending state 110580.00000 B with 0 decimals of accuracy [11:53:37][D][sensor:094]: 'Loop Time': Sending state 255.00000 ms with 0 decimals of accuracy [11:53:38][D][vista_alarm:813]: Force refresh.... [11:53:38][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 62 6C 02 45 6C F5 EC 01 01 01 00 00 31 [11:53:38][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 63 63 02 45 43 F5 31 FB 45 6C F5 EC 03 01 01 01 89 [11:53:38][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [11:53:38][I][vista_alarm:963]: Partition: 01 [11:53:38][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [11:53:38][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [11:53:38][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [11:53:38][I][vista_alarm:987]: Prompt: HOUSE
[11:53:38][I][vista_alarm:988]: Prompt: CHIME,Rdy to Arm [11:53:38][I][vista_alarm:989]: Beeps: 0 [11:53:38][D][text_sensor:064]: 'System Status (ss_1)': Sending state 'disarmed' [11:53:38][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state ON [11:53:38][D][binary_sensor:036]: 'Front Door': Sending state OFF [11:53:38][D][text_sensor:064]: 'Zone Status (zs)': Sending state '' [11:53:38][W][component:237]: Component vista_alarm_panel took a long time for an operation (70 ms). [11:53:38][W][component:238]: Components should block for at most 30 ms. [11:53:39][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:39][I][EXT:588]: 2024-05-18 11:53 F6 01 21 0C 00 68 62 02 45 43 F5 31 FB [11:53:39][I][CHK:588]: 2024-05-18 11:53 21 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:39][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 50 FE FE EC 03 01 01 01 C0 [11:53:42][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [11:53:42][I][vista_alarm:963]: Partition: 01 [11:53:42][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [11:53:42][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [11:53:42][I][vista_alarm:987]: Prompt: HOUSE
[11:53:42][I][vista_alarm:988]: Prompt: CHIME,Rdy to Arm [11:53:42][I][vista_alarm:989]: Beeps: 0 [11:53:43][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 64 6C 02 45 6C F5 EC 01 01 01 00 00 2F [11:53:43][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 65 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 81 [11:53:43][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:43][I][EXT:588]: 2024-05-18 11:53 F6 01 61 0C 00 69 62 02 45 43 F5 31 FB [11:53:43][I][CHK:588]: 2024-05-18 11:53 61 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:44][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [11:53:44][I][vista_alarm:963]: Partition: 01 [11:53:44][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [11:53:44][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [11:53:44][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [11:53:44][I][vista_alarm:987]: Prompt: FAULT 01 FRONT
[11:53:44][I][vista_alarm:988]: Prompt: DOOR
[11:53:44][I][vista_alarm:989]: Beeps: 3 [11:53:44][D][binary_sensor:036]: 'Front Door': Sending state ON [11:53:44][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state OFF [11:53:44][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1' [11:53:44][W][component:237]: Component vista_alarm_panel took a long time for an operation (97 ms). [11:53:44][W][component:238]: Components should block for at most 30 ms. [11:53:44][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 51 FE FE EC 03 02 01 06 B9 [11:53:46][D][vista_alarm:764][cmdQueueTask]: Taskupdates free memory: 1164

[11:53:46][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:46][I][EXT:588]: 2024-05-18 11:53 F6 01 A1 0C 00 6A 62 02 45 43 F5 31 FB [11:53:46][I][CHK:588]: 2024-05-18 11:53 A1 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:46][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 52 FE FE EC 03 02 01 06 B8 [11:53:47][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 01 00 00 28 02 00 00 46 [11:53:47][I][vista_alarm:963]: Partition: 01 [11:53:47][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [11:53:47][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [11:53:47][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [11:53:47][I][vista_alarm:987]: Prompt: FAULT 01 FRONT
[11:53:47][I][vista_alarm:988]: Prompt: DOOR
[11:53:47][I][vista_alarm:989]: Beeps: 0 [11:53:47][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 66 6C 02 45 6C F5 EC 01 01 01 00 00 2D [11:53:48][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 67 63 02 45 43 F5 31 FB 45 6C F5 EC 03 01 01 01 85 [11:53:48][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [11:53:48][I][vista_alarm:963]: Partition: 01 [11:53:48][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [11:53:48][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [11:53:48][I][vista_alarm:987]: Prompt: HOUSE
[11:53:48][I][vista_alarm:988]: Prompt: CHIME,Rdy to Arm [11:53:48][I][vista_alarm:989]: Beeps: 0 [11:53:48][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state ON [11:53:48][D][binary_sensor:036]: 'Front Door': Sending state OFF [11:53:48][D][text_sensor:064]: 'Zone Status (zs)': Sending state '' [11:53:48][W][component:237]: Component vista_alarm_panel took a long time for an operation (64 ms). [11:53:48][W][component:238]: Components should block for at most 30 ms. [11:53:48][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:48][I][EXT:588]: 2024-05-18 11:53 F6 01 E1 0C 00 6B 62 02 45 43 F5 31 FB [11:53:48][I][CHK:588]: 2024-05-18 11:53 E1 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:48][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 53 FE FE EC 03 01 01 01 BD [11:53:51][I][CMD:588]: 2024-05-18 11:53 F9 83 02 53 2F 00 00 00 00 00 00 00 00 [11:53:51][I][CHK:588]: 2024-05-18 11:53 78 C3 00 00 00 00 00 00 00 00 00 00 00 [11:53:51][I][EXT:588]: 2024-05-18 11:53 F9 00 C3 04 00 00 00 39 00 00 00 00 00 [11:53:52][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [11:53:52][I][vista_alarm:963]: Partition: 01 [11:53:52][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [11:53:52][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [11:53:52][I][vista_alarm:987]: Prompt: HOUSE
[11:53:52][I][vista_alarm:988]: Prompt: CHIME,Rdy to Arm [11:53:52][I][vista_alarm:989]: Beeps: 0 [11:53:55][I][CMD:588]: 2024-05-18 11:53 FA 01 02 20 F7 EC 00 00 00 00 00 00 00 [11:53:55][I][EXT:588]: 2024-05-18 11:53 FA 07 F7 00 00 00 00 00 00 00 00 00 00 [11:53:56][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:56][I][EXT:588]: 2024-05-18 11:53 F6 01 21 0C 00 6C 62 02 45 43 F5 31 FB [11:53:56][I][CHK:588]: 2024-05-18 11:53 21 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:56][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 54 FE FE EC 03 01 01 01 BC [11:53:56][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 60 6C 02 45 6C F5 EC 01 01 01 00 00 33 [11:53:56][I][CMD:588]: 2024-05-18 11:53 F7 02 00 1D 10 01 03 00 28 02 00 00 46 [11:53:56][I][vista_alarm:963]: Partition: 01 [11:53:56][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 01 FRONT ' [11:53:56][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [11:53:56][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [11:53:56][I][vista_alarm:987]: Prompt: FAULT 01 FRONT
[11:53:56][I][vista_alarm:988]: Prompt: DOOR
[11:53:56][I][vista_alarm:989]: Beeps: 3 [11:53:56][D][binary_sensor:036]: 'Front Door': Sending state ON [11:53:56][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state OFF [11:53:56][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:1' [11:53:56][W][component:237]: Component vista_alarm_panel took a long time for an operation (63 ms). [11:53:56][W][component:238]: Components should block for at most 30 ms. [11:53:56][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 61 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 85 [11:53:56][I][CMD:588]: 2024-05-18 11:53 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:53:56][I][EXT:588]: 2024-05-18 11:53 F6 01 61 00 6D 62 02 45 43 F5 31 FB 43 [11:53:56][I][CHK:588]: 2024-05-18 11:53 61 00 00 00 00 00 00 00 00 00 00 00 90 [11:53:57][I][CMD:588]: 2024-05-18 11:53 F2 0E 02 00 00 00 00 55 FE FE EC 03 02 01 06 B5 [11:53:59][I][CMD:588]: 2024-05-18 11:53 F2 12 66 00 00 00 00 62 6C 02 45 6C F5 EC 01 01 01 00 00 31 [11:53:59][I][CMD:588]: 2024-05-18 11:53 F2 16 66 00 00 00 00 63 63 02 45 43 F5 31 FB 45 6C F5 EC 03 01 01 01 89 [11:54:00][I][CMD:588]: 2024-05-18 11:54 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [11:54:00][I][vista_alarm:963]: Partition: 01 [11:54:00][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [11:54:00][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [11:54:00][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [11:54:00][I][vista_alarm:987]: Prompt: HOUSE
[11:54:00][I][vista_alarm:988]: Prompt: CHIME,Rdy to Arm [11:54:00][I][vista_alarm:989]: Beeps: 0 [11:54:00][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state ON [11:54:00][D][binary_sensor:036]: 'Front Door': Sending state OFF [11:54:00][D][text_sensor:064]: 'Zone Status (zs)': Sending state '' [11:54:00][W][component:237]: Component vista_alarm_panel took a long time for an operation (63 ms). [11:54:00][W][component:238]: Components should block for at most 30 ms. [11:54:00][I][CMD:588]: 2024-05-18 11:54 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:54:00][I][EXT:588]: 2024-05-18 11:54 F6 01 A1 00 6E 62 02 45 43 F5 31 FB 43 [11:54:00][I][CHK:588]: 2024-05-18 11:54 A1 00 00 00 00 00 00 00 00 00 00 00 90 [11:54:00][I][CMD:588]: 2024-05-18 11:54 F2 0E 02 00 00 00 00 56 FE FE EC 03 01 01 01 BA [11:54:03][I][CMD:588]: 2024-05-18 11:54 F7 02 00 1D 10 08 00 1C 28 02 00 00 48 [11:54:03][I][vista_alarm:963]: Partition: 01 [11:54:03][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'HOUSE ' [11:54:03][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'CHIME,Rdy to Arm' [11:54:03][I][vista_alarm:987]: Prompt: HOUSE
[11:54:03][I][vista_alarm:988]: Prompt: CHIME,Rdy to Arm [11:54:03][I][vista_alarm:989]: Beeps: 0 [11:54:04][I][CMD:588]: 2024-05-18 11:54 F2 12 66 00 00 00 00 64 6C 02 45 6C F5 EC 01 01 01 00 00 2F [11:54:04][I][CMD:588]: 2024-05-18 11:54 F2 16 66 00 00 00 00 65 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 81 [11:54:04][I][CMD:588]: 2024-05-18 11:54 F7 02 00 1D 10 03 00 00 28 02 00 00 46 [11:54:04][I][vista_alarm:963]: Partition: 01 [11:54:04][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 03 MOTION ' [11:54:04][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DETECTOR ' [11:54:04][I][vista_alarm:987]: Prompt: FAULT 03 MOTION [11:54:05][I][vista_alarm:988]: Prompt: DETECTOR
[11:54:05][I][vista_alarm:989]: Beeps: 0 [11:54:05][D][binary_sensor:036]: 'Living Room Motion Detector': Sending state ON [11:54:05][D][binary_sensor:036]: 'Ready (rdy_1)': Sending state OFF [11:54:05][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:3' [11:54:05][W][component:237]: Component vista_alarm_panel took a long time for an operation (63 ms). [11:54:05][W][component:238]: Components should block for at most 30 ms. [11:54:05][I][CMD:588]: 2024-05-18 11:54 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:54:05][I][CHK:588]: 2024-05-18 11:54 E1 00 00 00 00 00 00 00 00 00 00 00 90 [11:54:05][I][EXT:588]: 2024-05-18 11:54 F6 01 E1 07 00 6F 6B 02 43 43 B6 00 00 [11:54:05][I][CMD:588]: 2024-05-18 11:54 F2 0E 02 00 00 00 00 57 FE EC 01 01 01 00 00 BA [11:54:05][I][CMD:588]: 2024-05-18 11:54 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:54:05][I][EXT:588]: 2024-05-18 11:54 F6 01 21 0C 00 68 62 02 45 43 F5 31 FB [11:54:05][I][CHK:588]: 2024-05-18 11:54 21 00 00 00 00 00 00 00 00 00 00 00 90 [11:54:05][I][CMD:588]: 2024-05-18 11:54 F2 0E 02 00 00 00 00 50 FE FE EC 03 02 01 06 BA [11:54:05][I][CMD:588]: 2024-05-18 11:54 F6 01 00 00 00 00 00 00 00 00 00 00 00 [11:54:05][I][EXT:588]: 2024-05-18 11:54 F6 01 61 0C 00 69 62 02 45 43 F5 31 FB [11:54:05][I][CHK:588]: 2024-05-18 11:54 61 00 00 00 00 00 00 00 00 00 00 00 90 [11:54:06][I][CMD:588]: 2024-05-18 11:54 F2 0E 02 00 00 00 00 51 FE FE EC 03 02 01 06 B9 [11:54:08][I][CMD:588]: 2024-05-18 11:54 F7 02 00 1D 10 03 00 00 28 02 00 00 46 [11:54:08][I][vista_alarm:963]: Partition: 01

rwoldberg avatar May 18 '24 17:05 rwoldberg

Tks again! Well, from what I see, there are no queries for specific zone statuses. All I see are periodic system status queries. I guess the 6270's don't get zone close events either. I'll look into it more.

Dilbert66 avatar May 18 '24 22:05 Dilbert66

Interesting, I wonder how it can get away with showing the zone as closed in a little less than two seconds. Maybe the controller sends updates to it faster than other keypads?

rwoldberg avatar May 18 '24 22:05 rwoldberg

Are you saying for example that you have two zones open and one closes, you get instant notification that this zone is closed? If there is only one zone open then closes, that's different as the system will send a ready flag and the keypad will close the zone immediately. With two zones open and one closes, the system will not send any status change as it is still not ready so as far as I can tell there is no individual zone notification. I've never seen a 6270 so not aware of how it displays individual zone statuses. From what I see in the logs there is no zone info as far as I can see in the f2 cmds. Only system status which puzzles me.

Dilbert66 avatar May 19 '24 13:05 Dilbert66

Now, I do know that the keypad can retrieve zone statuses when asked via menu but that is a different process as it will send a cmd to the panel for it to send a zone update. It does not do that on it's own as far as I know.

Dilbert66 avatar May 19 '24 13:05 Dilbert66

This is the screen on the keypad that shows the open zones. panel So maybe it is requesting the zone statuses, I could get a log of the output with this screen up on the keypad. Would it be possible to do the same thing from the emulated keypad? Maybe have an option for how often to request the status? And yes the zones close in under two seconds when this screen is displayed no matter how many are open.

rwoldberg avatar May 19 '24 14:05 rwoldberg

Yes if you could log that it would be great! You might need to recompile as your last log didn't contain the last updates. As to your question, yes, I can emulate all aspects of the communcations of this keypad including the zone lookup from they esp keypad emulation. This way I can retrieve any active zones and names from the panel. This is why I need logs of the communications so I can hard code the correct request cmds in.

Dilbert66 avatar May 19 '24 14:05 Dilbert66

Fyi, whenever a zone or system status updates, there are 2 F2 system status messages sent out. Nothing zone related that I can see. Mostly system flags. But those F2 cmds can be used to trigger a zone status update request cmd to do exactly what is needed to update any zone status immediately. All I need is that zone status request cmd.

Dilbert66 avatar May 19 '24 22:05 Dilbert66

Here is the log with the status page open on the keypad, hopefully this has the data you need: [17:11:42][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 06 SOUTH ' [17:11:42][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'GUEST ROOM ' [17:11:42][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:11:42][I][vista_alarm:987]: Prompt: FAULT 06 SOUTH
[17:11:42][I][vista_alarm:988]: Prompt: GUEST ROOM
[17:11:42][I][vista_alarm:989]: Beeps: 0 [17:11:43][I][CMD:588]: 2024-05-19 17:11 FA 01 02 25 F7 E7 00 00 00 00 00 00 00 [17:11:43][I][EXT:588]: 2024-05-19 17:11 FA 07 F7 00 70 00 00 00 00 00 00 00 00 [17:11:43][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:43][I][CHK:588]: 2024-05-19 17:11 A1 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:43][I][EXT:588]: 2024-05-19 17:11 F6 01 A1 0C 00 6E 62 02 45 43 F5 31 FB [17:11:43][I][CMD:588]: 2024-05-19 17:11 F2 0E 02 00 00 00 00 56 FE FE EC 03 02 01 06 B4 [17:11:45][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:46][I][EXT:588]: 2024-05-19 17:11 F6 01 E1 16 00 6F 62 31 45 49 F5 31 FB [17:11:46][I][CHK:588]: 2024-05-19 17:11 E1 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:46][I][CMD:588]: 2024-05-19 17:11 F2 13 02 00 00 00 00 57 FE FE FE FE EC 36 00 31 30 2D 31 32 97 [17:11:46][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:46][I][CHK:588]: 2024-05-19 17:11 21 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:46][I][EXT:588]: 2024-05-19 17:11 F6 01 21 16 00 68 62 31 45 49 F5 31 FB [17:11:46][I][CMD:588]: 2024-05-19 17:11 F2 0B 02 00 00 00 00 50 FE FE FE FE B9 [17:11:46][I][CMD:588]: 2024-05-19 17:11 F7 02 00 1D 10 10 00 00 28 02 00 00 46 [17:11:46][I][vista_alarm:963]: Partition: 01 [17:11:46][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 10 MASTER ' [17:11:46][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'BEDROOM ' [17:11:46][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:11:46][I][vista_alarm:987]: Prompt: FAULT 10 MASTER [17:11:46][I][vista_alarm:988]: Prompt: BEDROOM
[17:11:46][I][vista_alarm:989]: Beeps: 0 [17:11:48][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:48][I][EXT:588]: 2024-05-19 17:11 F6 01 61 16 00 69 62 31 45 49 F5 31 FB [17:11:48][I][CHK:588]: 2024-05-19 17:11 61 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:48][I][CMD:588]: 2024-05-19 17:11 F2 13 02 00 00 00 00 51 FE FE FE FE EC 36 00 31 30 2D 31 32 9D [17:11:48][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:48][I][CHK:588]: 2024-05-19 17:11 A1 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:49][I][EXT:588]: 2024-05-19 17:11 F6 01 A1 16 00 6A 62 31 45 49 F5 31 FB [17:11:49][I][CMD:588]: 2024-05-19 17:11 F2 0B 02 00 00 00 00 52 FE FE FE FE B7 [17:11:49][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:49][I][CHK:588]: 2024-05-19 17:11 E1 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:49][I][EXT:588]: 2024-05-19 17:11 F6 01 E1 0C 00 6B 62 02 45 43 F5 31 FB [17:11:49][I][CMD:588]: 2024-05-19 17:11 F2 0E 02 00 00 00 00 53 FE FE EC 03 02 01 06 B7 [17:11:50][I][CMD:588]: 2024-05-19 17:11 F7 02 00 1D 10 11 00 00 28 02 00 00 46 [17:11:50][I][vista_alarm:963]: Partition: 01 [17:11:50][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 11 ' [17:11:50][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'BASEMENT SLIDING' [17:11:50][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:11:50][I][vista_alarm:987]: Prompt: FAULT 11
[17:11:50][I][vista_alarm:988]: Prompt: BASEMENT SLIDING [17:11:50][I][vista_alarm:989]: Beeps: 0 [17:11:51][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:51][I][CHK:588]: 2024-05-19 17:11 21 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:51][I][EXT:588]: 2024-05-19 17:11 F6 01 21 16 00 6C 62 31 45 49 F5 31 FB [17:11:51][I][CMD:588]: 2024-05-19 17:11 F2 13 02 00 00 00 00 54 FE FE FE FE EC 36 00 31 30 2D 31 32 9A [17:11:51][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:51][I][CHK:588]: 2024-05-19 17:11 61 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:51][I][EXT:588]: 2024-05-19 17:11 F6 01 61 16 00 6D 62 31 45 49 F5 31 FB [17:11:52][I][CMD:588]: 2024-05-19 17:11 F2 0B 02 00 00 00 00 55 FE FE FE FE B4 [17:11:54][I][CMD:588]: 2024-05-19 17:11 F7 02 00 1D 10 02 03 00 28 02 00 00 46 [17:11:54][I][vista_alarm:963]: Partition: 01 [17:11:54][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 02 GARAGE ' [17:11:54][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [17:11:54][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [17:11:54][I][vista_alarm:987]: Prompt: FAULT 02 GARAGE [17:11:54][I][vista_alarm:988]: Prompt: DOOR
[17:11:54][I][vista_alarm:989]: Beeps: 3 [17:11:54][D][binary_sensor:036]: 'Kitchen Door': Sending state ON [17:11:54][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:2,OP:6,OP:10,OP:11,OP:12' [17:11:54][W][component:237]: Component vista_alarm_panel took a long time for an operation (61 ms). [17:11:54][W][component:238]: Components should block for at most 30 ms. [17:11:54][I][CMD:588]: 2024-05-19 17:11 F2 12 66 00 00 00 00 67 6C 02 45 6C F5 EC 01 01 01 00 00 2C [17:11:54][I][CMD:588]: 2024-05-19 17:11 F2 16 66 00 00 00 00 60 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 86 [17:11:55][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:55][I][EXT:588]: 2024-05-19 17:11 F6 01 A1 16 00 6E 62 31 45 49 F5 31 FB [17:11:55][I][CHK:588]: 2024-05-19 17:11 A1 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:55][I][CMD:588]: 2024-05-19 17:11 F2 15 02 00 00 00 00 56 FE FE FE FE EC 32 00 36 00 31 30 2D 31 32 64 [17:11:55][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:55][I][CHK:588]: 2024-05-19 17:11 E1 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:55][I][EXT:588]: 2024-05-19 17:11 F6 01 0C 00 6F 62 02 45 43 F5 31 FB 43 [17:11:55][I][CMD:588]: 2024-05-19 17:11 F2 0E 02 00 00 00 00 57 FE FE EC 03 02 01 06 B3 [17:11:55][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:55][I][EXT:588]: 2024-05-19 17:11 F6 01 21 16 00 68 62 31 45 49 F5 31 FB [17:11:55][I][CHK:588]: 2024-05-19 17:11 21 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:55][I][CMD:588]: 2024-05-19 17:11 F2 0B 02 00 00 00 00 50 FE FE FE FE B9 [17:11:57][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:57][I][EXT:588]: 2024-05-19 17:11 F6 01 61 16 00 69 62 31 45 49 F5 31 FB [17:11:57][I][CHK:588]: 2024-05-19 17:11 61 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:57][I][CMD:588]: 2024-05-19 17:11 F2 15 02 00 00 00 00 51 FE FE FE FE EC 32 00 36 00 31 30 2D 31 32 69 [17:11:57][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:57][I][EXT:588]: 2024-05-19 17:11 F6 01 A1 16 00 6A 62 31 45 49 F5 31 FB [17:11:57][I][CHK:588]: 2024-05-19 17:11 A1 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:57][I][CMD:588]: 2024-05-19 17:11 F2 0B 02 00 00 00 00 52 FE FE FE FE B7 [17:11:58][I][CMD:588]: 2024-05-19 17:11 F7 02 00 1D 10 06 00 00 28 02 00 00 46 [17:11:58][I][vista_alarm:963]: Partition: 01 [17:11:58][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 06 SOUTH ' [17:11:58][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'GUEST ROOM ' [17:11:58][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:11:58][I][vista_alarm:987]: Prompt: FAULT 06 SOUTH
[17:11:58][I][vista_alarm:988]: Prompt: GUEST ROOM
[17:11:58][I][vista_alarm:989]: Beeps: 0 [17:11:58][I][CMD:588]: 2024-05-19 17:11 F2 12 66 00 00 00 00 61 6C 02 45 6C F5 EC 01 01 01 00 00 32 [17:11:58][I][CMD:588]: 2024-05-19 17:11 F2 16 66 00 00 00 00 62 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 84 [17:11:58][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:58][I][CHK:588]: 2024-05-19 17:11 E1 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:59][I][EXT:588]: 2024-05-19 17:11 F6 01 E1 07 00 6B 05 02 43 43 20 00 00 [17:11:59][I][CMD:588]: 2024-05-19 17:11 F7 02 00 1D 10 10 00 00 28 02 00 00 46 [17:11:59][I][vista_alarm:963]: Partition: 01 [17:11:59][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 10 MASTER ' [17:11:59][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'BEDROOM ' [17:11:59][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:11:59][I][vista_alarm:987]: Prompt: FAULT 10 MASTER [17:11:59][I][vista_alarm:988]: Prompt: BEDROOM
[17:11:59][I][vista_alarm:989]: Beeps: 0 [17:11:59][W][component:237]: Component vista_alarm_panel took a long time for an operation (52 ms). [17:11:59][W][component:238]: Components should block for at most 30 ms. [17:11:59][I][CMD:588]: 2024-05-19 17:11 F2 16 02 00 00 00 00 53 FE EC 32 34 30 35 31 39 31 37 31 31 33 35 30 22 [17:11:59][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:59][I][EXT:588]: 2024-05-19 17:11 F6 01 21 00 6C 62 02 45 43 F5 31 FB 43 [17:11:59][I][CHK:588]: 2024-05-19 17:11 21 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:59][I][CMD:588]: 2024-05-19 17:11 F2 0E 02 00 00 00 00 54 FE FE EC 03 02 01 06 B6 [17:11:59][I][CMD:588]: 2024-05-19 17:11 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:11:59][I][EXT:588]: 2024-05-19 17:11 F6 01 61 0C 00 6D 62 02 45 43 F5 31 FB [17:11:59][I][CHK:588]: 2024-05-19 17:11 61 00 00 00 00 00 00 00 00 00 00 00 90 [17:11:59][I][CMD:588]: 2024-05-19 17:11 F2 0E 02 00 00 00 00 55 FE FE EC 03 02 01 06 B5 [17:12:00][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:00][I][CHK:588]: 2024-05-19 17:12 A1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:00][I][EXT:588]: 2024-05-19 17:12 F6 01 A1 16 00 6E 62 31 45 49 F5 31 FB [17:12:00][I][CMD:588]: 2024-05-19 17:12 F2 13 02 00 00 00 00 56 FE FE FE FE EC 36 00 31 30 2D 31 32 98 [17:12:00][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:00][I][CHK:588]: 2024-05-19 17:12 E1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:00][I][EXT:588]: 2024-05-19 17:12 F6 01 E1 16 00 6F 62 31 45 49 F5 31 FB [17:12:00][I][CMD:588]: 2024-05-19 17:12 F2 0B 02 00 00 00 00 57 FE FE FE FE B2 [17:12:01][I][CMD:588]: 2024-05-19 17:12 F2 12 66 00 00 00 00 63 6C 02 45 6C F5 EC 01 01 01 00 00 30 [17:12:02][I][CMD:588]: 2024-05-19 17:12 F2 16 66 00 00 00 00 64 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 82 [17:12:02][I][CMD:588]: 2024-05-19 17:12 F7 02 00 1D 10 02 03 00 28 02 00 00 46 [17:12:02][I][vista_alarm:963]: Partition: 01 [17:12:02][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 02 GARAGE ' [17:12:02][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [17:12:02][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [17:12:02][I][vista_alarm:987]: Prompt: FAULT 02 GARAGE [17:12:02][I][vista_alarm:988]: Prompt: DOOR
[17:12:02][I][vista_alarm:989]: Beeps: 3 [17:12:02][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:02][I][EXT:588]: 2024-05-19 17:12 F6 01 21 00 68 62 02 45 43 F5 31 FB 43 [17:12:02][I][CHK:588]: 2024-05-19 17:12 21 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:02][I][CMD:588]: 2024-05-19 17:12 F2 0E 02 00 00 00 00 50 FE FE EC 03 02 01 06 BA [17:12:03][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:03][I][EXT:588]: 2024-05-19 17:12 F6 01 61 16 00 69 62 31 45 49 F5 31 FB [17:12:03][I][CHK:588]: 2024-05-19 17:12 61 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:03][I][CMD:588]: 2024-05-19 17:12 F2 15 02 00 00 00 00 51 FE FE FE FE EC 32 00 36 00 31 30 2D 31 32 69 [17:12:03][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:03][I][CHK:588]: 2024-05-19 17:12 A1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:03][I][EXT:588]: 2024-05-19 17:12 F6 01 A1 16 00 6A 62 31 45 49 F5 31 FB [17:12:03][I][CMD:588]: 2024-05-19 17:12 F2 0B 02 00 00 00 00 52 FE FE FE FE B7 [17:12:04][D][vista_alarm:764][cmdQueueTask]: Taskupdates free memory: 1164

[17:12:06][I][CMD:588]: 2024-05-19 17:12 F7 02 00 1D 10 06 00 00 28 02 00 00 46 [17:12:06][I][vista_alarm:963]: Partition: 01 [17:12:06][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 06 SOUTH ' [17:12:06][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'GUEST ROOM ' [17:12:06][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:12:06][I][vista_alarm:987]: Prompt: FAULT 06 SOUTH
[17:12:06][I][vista_alarm:988]: Prompt: GUEST ROOM
[17:12:06][I][vista_alarm:989]: Beeps: 0 [17:12:06][D][binary_sensor:036]: 'Deck Sliding Door': Sending state OFF [17:12:06][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:2,OP:6,OP:10,OP:11' [17:12:06][W][component:237]: Component vista_alarm_panel took a long time for an operation (60 ms). [17:12:06][W][component:238]: Components should block for at most 30 ms. [17:12:06][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:06][I][CHK:588]: 2024-05-19 17:12 E1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:06][I][EXT:588]: 2024-05-19 17:12 F6 01 E1 16 00 6B 62 31 45 49 F5 31 FB [17:12:06][I][CMD:588]: 2024-05-19 17:12 F2 15 02 00 00 00 00 53 FE FE FE FE EC 32 00 36 00 31 30 2D 31 32 67 [17:12:06][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:06][I][CHK:588]: 2024-05-19 17:12 21 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:06][I][EXT:588]: 2024-05-19 17:12 F6 01 21 16 00 6C 62 31 45 49 F5 31 FB [17:12:06][I][CMD:588]: 2024-05-19 17:12 F2 0B 02 00 00 00 00 54 FE FE FE FE B5 [17:12:07][I][CMD:588]: 2024-05-19 17:12 F2 12 66 00 00 00 00 65 6C 02 45 6C F5 EC 01 01 01 00 00 2E [17:12:07][I][CMD:588]: 2024-05-19 17:12 F7 02 00 1D 10 10 00 00 28 02 00 00 46 [17:12:07][I][vista_alarm:963]: Partition: 01 [17:12:07][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 10 MASTER ' [17:12:07][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'BEDROOM ' [17:12:07][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:12:07][I][vista_alarm:987]: Prompt: FAULT 10 MASTER [17:12:07][I][vista_alarm:988]: Prompt: BEDROOM
[17:12:07][I][vista_alarm:989]: Beeps: 0 [17:12:07][I][CMD:588]: 2024-05-19 17:12 F2 16 66 00 00 00 00 66 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 80 [17:12:07][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:07][I][EXT:588]: 2024-05-19 17:12 F6 01 61 00 6D 62 02 45 43 F5 31 FB 43 [17:12:07][I][CHK:588]: 2024-05-19 17:12 61 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:07][I][CMD:588]: 2024-05-19 17:12 F2 0E 02 00 00 00 00 55 FE FE EC 03 02 01 06 B5 [17:12:08][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:08][I][EXT:588]: 2024-05-19 17:12 F6 01 A1 07 00 6E 6B 02 43 43 F7 00 00 [17:12:08][I][CHK:588]: 2024-05-19 17:12 A1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:08][I][CMD:588]: 2024-05-19 17:12 F2 0E 02 00 00 00 00 56 FE EC 01 01 01 00 00 BB [17:12:09][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:09][I][CHK:588]: 2024-05-19 17:12 E1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:09][I][EXT:588]: 2024-05-19 17:12 F6 01 E1 0C 00 6F 62 02 45 43 F5 31 FB [17:12:09][I][CMD:588]: 2024-05-19 17:12 F2 0E 02 00 00 00 00 57 FE FE EC 03 02 01 06 B3 [17:12:09][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:09][I][EXT:588]: 2024-05-19 17:12 F6 01 21 16 00 68 62 31 45 49 F5 31 FB [17:12:09][I][CHK:588]: 2024-05-19 17:12 21 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:09][I][CMD:588]: 2024-05-19 17:12 F2 13 02 00 00 00 00 50 FE FE FE FE EC 36 00 31 30 2D 31 32 9E [17:12:09][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:09][I][CHK:588]: 2024-05-19 17:12 61 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:09][I][EXT:588]: 2024-05-19 17:12 F6 01 61 16 00 69 62 31 45 49 F5 31 FB [17:12:09][I][CMD:588]: 2024-05-19 17:12 F2 02 00 00 [17:12:09][I][CHK:588]: 2024-05-19 17:12 51 FE FE FE FE B8 00 00 00 00 00 00 90 [17:12:11][I][CMD:588]: 2024-05-19 17:12 F7 02 00 1D 10 11 00 00 28 02 00 00 46 [17:12:11][I][vista_alarm:963]: Partition: 01 [17:12:11][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 11 ' [17:12:11][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'BASEMENT SLIDING' [17:12:11][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:12:11][I][vista_alarm:987]: Prompt: FAULT 11
[17:12:11][I][vista_alarm:988]: Prompt: BASEMENT SLIDING [17:12:11][I][vista_alarm:989]: Beeps: 0 [17:12:11][I][CMD:588]: 2024-05-19 17:12 F9 03 02 53 AF 00 00 00 00 00 00 00 00 [17:12:11][I][CHK:588]: 2024-05-19 17:12 78 43 00 00 00 00 00 00 00 00 00 00 00 [17:12:11][I][EXT:588]: 2024-05-19 17:12 F9 00 43 04 00 00 00 B9 00 00 00 00 00 [17:12:11][I][CMD:588]: 2024-05-19 17:12 F2 12 66 00 00 00 00 67 6C 02 45 6C F5 EC 01 01 01 00 00 2C [17:12:12][I][CMD:588]: 2024-05-19 17:12 F7 02 00 1D 10 02 03 00 28 02 00 00 46 [17:12:12][I][vista_alarm:963]: Partition: 01 [17:12:12][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 02 GARAGE ' [17:12:12][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [17:12:12][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '3' [17:12:12][I][vista_alarm:987]: Prompt: FAULT 02 GARAGE [17:12:12][I][vista_alarm:988]: Prompt: DOOR
[17:12:12][I][vista_alarm:989]: Beeps: 3 [17:12:12][I][CMD:588]: 2024-05-19 17:12 F2 16 66 00 00 00 00 60 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 86 [17:12:12][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:12][I][CHK:588]: 2024-05-19 17:12 A1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:12][I][EXT:588]: 2024-05-19 17:12 F6 01 A1 16 00 6A 62 31 45 49 F5 31 FB [17:12:12][I][CMD:588]: 2024-05-19 17:12 F2 15 02 00 00 00 00 52 FE FE FE FE EC 32 00 36 00 31 30 2D 31 32 68 [17:12:12][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:12][I][EXT:588]: 2024-05-19 17:12 F6 01 E1 0C 00 6B 62 02 45 43 F5 31 FB [17:12:12][I][CHK:588]: 2024-05-19 17:12 E1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:12][I][CMD:588]: 2024-05-19 17:12 F2 0E 02 00 00 00 00 53 FE FE EC 03 02 01 06 B7 [17:12:13][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:13][I][CHK:588]: 2024-05-19 17:12 21 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:13][I][EXT:588]: 2024-05-19 17:12 F6 01 21 16 00 6C 62 31 45 49 F5 31 FB [17:12:13][I][CMD:588]: 2024-05-19 17:12 F2 0B 02 00 00 00 00 54 FE FE FE FE B5 [17:12:14][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:15][I][EXT:588]: 2024-05-19 17:12 F6 01 61 16 00 6D 62 31 45 49 F5 31 FB [17:12:15][I][CHK:588]: 2024-05-19 17:12 61 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:15][I][CMD:588]: 2024-05-19 17:12 F2 15 02 00 00 00 00 55 FE FE FE FE EC 32 00 36 00 31 30 2D 31 32 65 [17:12:15][I][CMD:588]: 2024-05-19 17:12 FA 01 02 20 F7 EC 00 00 00 00 00 00 00 [17:12:15][I][EXT:588]: 2024-05-19 17:12 FA 07 F7 00 70 00 00 00 00 00 00 00 00 [17:12:15][D][binary_sensor:036]: 'Deck Sliding Door': Sending state ON [17:12:15][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:15][I][CHK:588]: 2024-05-19 17:12 A1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:15][I][EXT:588]: 2024-05-19 17:12 F6 01 A1 16 00 6E 62 31 45 49 F5 31 FB [17:12:15][I][CMD:588]: 2024-05-19 17:12 F2 0B 02 00 00 00 00 56 FE FE FE FE B3 [17:12:15][I][CMD:588]: 2024-05-19 17:12 F7 02 00 1D 10 06 00 00 28 02 00 00 46 [17:12:15][I][vista_alarm:963]: Partition: 01 [17:12:15][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 06 SOUTH ' [17:12:15][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'GUEST ROOM ' [17:12:15][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:12:15][I][vista_alarm:987]: Prompt: FAULT 06 SOUTH
[17:12:15][I][vista_alarm:988]: Prompt: GUEST ROOM
[17:12:15][I][vista_alarm:989]: Beeps: 0 [17:12:15][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:2,OP:6,OP:10,OP:11,OP:12' [17:12:15][W][component:237]: Component vista_alarm_panel took a long time for an operation (56 ms). [17:12:15][W][component:238]: Components should block for at most 30 ms. [17:12:16][I][CMD:588]: 2024-05-19 17:12 F2 12 66 00 00 00 00 61 6C 02 45 6C F5 EC 01 01 01 00 00 32 [17:12:16][I][CMD:588]: 2024-05-19 17:12 F2 16 66 00 00 00 00 62 63 02 45 43 F5 31 FB 45 6C F5 EC 03 02 01 06 84 [17:12:16][I][CMD:588]: 2024-05-19 17:12 F7 02 00 1D 10 10 00 00 28 02 00 00 46 [17:12:16][I][vista_alarm:963]: Partition: 01 [17:12:16][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 10 MASTER ' [17:12:16][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'BEDROOM ' [17:12:16][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:12:16][I][vista_alarm:987]: Prompt: FAULT 10 MASTER [17:12:16][I][vista_alarm:988]: Prompt: BEDROOM
[17:12:16][I][vista_alarm:989]: Beeps: 0 [17:12:16][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:16][I][EXT:588]: 2024-05-19 17:12 F6 01 E1 0C 00 6F 62 02 45 43 F5 31 FB [17:12:16][I][CHK:588]: 2024-05-19 17:12 E1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:16][I][CMD:588]: 2024-05-19 17:12 F2 0E 02 00 00 00 00 57 FE FE EC 03 02 01 06 B3 [17:12:17][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:18][I][CHK:588]: 2024-05-19 17:12 21 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:18][I][EXT:588]: 2024-05-19 17:12 F6 01 21 16 00 68 62 31 45 49 F5 31 FB [17:12:18][I][CMD:588]: 2024-05-19 17:12 F2 13 02 00 00 00 00 50 FE FE FE FE EC 36 00 31 30 2D 31 32 9E [17:12:18][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:18][I][CHK:588]: 2024-05-19 17:12 61 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:18][I][EXT:588]: 2024-05-19 17:12 F6 01 61 16 00 69 62 31 45 49 F5 31 FB [17:12:18][I][CMD:588]: 2024-05-19 17:12 F2 0B 02 00 00 00 00 51 FE FE FE FE B8 [17:12:19][D][vista_alarm:813]: Force refresh.... [17:12:19][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:19][I][CHK:588]: 2024-05-19 17:12 A1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:19][I][EXT:588]: 2024-05-19 17:12 F6 01 A1 0C 00 6A 62 02 45 43 F5 31 FB [17:12:19][I][CMD:588]: 2024-05-19 17:12 F2 0E 02 00 00 00 00 52 FE FE EC 03 02 01 06 B8 [17:12:20][I][CMD:588]: 2024-05-19 17:12 F7 02 00 1D 10 11 00 00 28 02 00 00 46 [17:12:20][I][vista_alarm:963]: Partition: 01 [17:12:20][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 11 ' [17:12:20][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'BASEMENT SLIDING' [17:12:20][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:12:20][I][vista_alarm:987]: Prompt: FAULT 11
[17:12:20][I][vista_alarm:988]: Prompt: BASEMENT SLIDING [17:12:20][I][vista_alarm:989]: Beeps: 0 [17:12:20][D][text_sensor:064]: 'Zone Status (zs)': Sending state 'OP:2,OP:6,OP:10,OP:11,OP:12' [17:12:20][W][component:237]: Component vista_alarm_panel took a long time for an operation (59 ms). [17:12:20][W][component:238]: Components should block for at most 30 ms. [17:12:20][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:20][I][CHK:588]: 2024-05-19 17:12 E1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:21][I][EXT:588]: 2024-05-19 17:12 F6 01 E1 16 00 6B 62 31 45 49 F5 31 FB [17:12:21][I][CMD:588]: 2024-05-19 17:12 F2 13 02 00 00 00 00 53 FE FE FE FE EC 36 00 31 30 2D 31 32 9B [17:12:21][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:21][I][CHK:588]: 2024-05-19 17:12 21 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:21][I][EXT:588]: 2024-05-19 17:12 F6 01 21 16 00 6C 62 31 45 49 F5 31 FB [17:12:21][I][CMD:588]: 2024-05-19 17:12 F2 0B 02 00 00 00 00 54 FE FE FE FE B5 [17:12:24][I][CMD:588]: 2024-05-19 17:12 F7 02 00 1D 10 12 00 00 28 02 00 00 46 [17:12:24][I][vista_alarm:963]: Partition: 01 [17:12:24][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 12 SLIDING' [17:12:24][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'DOOR ' [17:12:24][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:12:24][I][vista_alarm:987]: Prompt: FAULT 12 SLIDING [17:12:24][I][vista_alarm:988]: Prompt: DOOR
[17:12:24][I][vista_alarm:989]: Beeps: 0 [17:12:24][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:24][I][EXT:588]: 2024-05-19 17:12 F6 01 61 16 00 6D 62 31 45 49 F5 31 FB [17:12:24][I][CHK:588]: 2024-05-19 17:12 61 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:24][I][CMD:588]: 2024-05-19 17:12 F2 13 02 00 00 00 00 55 FE FE FE FE EC 36 00 31 30 2D 31 32 99 [17:12:24][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:24][I][EXT:588]: 2024-05-19 17:12 F6 01 A1 16 00 6E 62 31 45 49 F5 31 FB [17:12:24][I][CHK:588]: 2024-05-19 17:12 A1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:24][I][CMD:588]: 2024-05-19 17:12 F2 0B 02 00 00 00 00 56 FE FE FE FE B3 [17:12:26][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:26][I][CHK:588]: 2024-05-19 17:12 E1 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:27][I][EXT:588]: 2024-05-19 17:12 F6 01 E1 16 00 6F 62 31 45 49 F5 31 FB [17:12:27][I][CMD:588]: 2024-05-19 17:12 F2 13 02 00 00 00 00 57 FE FE FE FE EC 36 00 31 30 2D 31 32 97 [17:12:27][I][CMD:588]: 2024-05-19 17:12 F6 01 00 00 00 00 00 00 00 00 00 00 00 [17:12:27][I][CHK:588]: 2024-05-19 17:12 21 00 00 00 00 00 00 00 00 00 00 00 90 [17:12:27][I][EXT:588]: 2024-05-19 17:12 F6 01 21 16 00 68 62 31 45 49 F5 31 FB [17:12:27][I][CMD:588]: 2024-05-19 17:12 F2 0B 02 00 00 00 00 50 FE FE FE FE B9 [17:12:27][I][CMD:588]: 2024-05-19 17:12 F7 02 00 1D 10 06 00 00 28 02 00 00 46 [17:12:27][I][vista_alarm:963]: Partition: 01 [17:12:27][D][text_sensor:064]: 'Line1 (ln1_1)': Sending state 'FAULT 06 SOUTH ' [17:12:27][D][text_sensor:064]: 'Line2 (ln2_1)': Sending state 'GUEST ROOM ' [17:12:27][D][text_sensor:064]: 'Beeps (bp_1)': Sending state '0' [17:12:28][I][vista_alarm:987]: Prompt: FAULT 06 SOUTH

rwoldberg avatar May 19 '24 23:05 rwoldberg

Tks again. Did you do a full recompile and re-upload? The code is still not showing the F6 length changes so the new code has not been picked up on your system.. They are still truncated at 13 characters.

FYI, this is the cmd I'm interested it. It looks to be doing the zone request but is missing some characters: It should have extra characters indicated by the xx [17:12:24][I][EXT:588]: 2024-05-19 17:12 F6 01 A1 16 00 6E 62 31 45 49 F5 31 FB xx xx xx xx xx xx xx xx xx xx xx xx xx

The response to the cmd is as below:

F2 15 02 00 00 00 00 55 FE FE FE FE EC 32 00 36 00 31 30 2D 31 32 65

The faulted zones are seen after the FE FE FE FE EC start sequence as ascii encoded numbers:

32 = zone 2 36 = zone 6 31 30 2D 31 32 = 10 - 12 (includes the dash 2D)

Dilbert66 avatar May 20 '24 03:05 Dilbert66

I did a clean and then a reinstall, that should have downloaded the new code. I will try again.

rwoldberg avatar May 20 '24 12:05 rwoldberg