Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modbus entities unavailable after HA restart #134602

Open
siggeb opened this issue Jan 3, 2025 · 1 comment
Open

Modbus entities unavailable after HA restart #134602

siggeb opened this issue Jan 3, 2025 · 1 comment

Comments

@siggeb
Copy link

siggeb commented Jan 3, 2025

The problem

Every time I restart Home assistant, often for config changes, the modbus entities from my heatpump go unavailable. And then some hours later, they are back, with this gap of several hours of being unavailable.

This has been present in several HA versions last 3-4 months. I have not yet upgraded to 2025.1

Skärmavbild 2025-01-04 kl  00 16 21

image

All observations point at something that may be related to the connection between HA and the heatpump not getting closed properly, or not being picked up again properly, and so there would be some timeout or keepalive that need some fixing. As I dont know better, I consider this a bug. I tried to ask for help in the HA facebook group, where people suggested several things for debugging modbus, but I have really now clue what I would be looking for.

https://www.facebook.com/groups/HomeAssistant/posts/3927615277509813/?comment_id=3928347694103238&notif_id=1734645203921105&notif_t=group_comment

I was inspired by this config when doing mine: https://github.com/gribber/ha/blob/main/modbus/ctc.yaml
Heatpump is CTC, and several people have gotten this integrated with modbus.

Here are some of my config lines:

name: ctc
type: tcp
host: 192.168.1.248
port: 502
delay: 10
timeout: 5

sensors:
  - name: "ctc_hot_water_temperature"
    unit_of_measurement: "°C"
    address: 62003
    scan_interval: 60
    slave: 1
    #data_type: integer
    scale: 0.1
    input_type: holding

  - name: "ctc_hw_mode"
    unique_id: 5994298b-bf81-48bf-8a23-96300f1f0d71
    address: 61500
    slave: 1
    # varmvattenläge
    # 0=economy 1=normal 2=comfort 3=customized

  - name: "ctc_extra_hot_water_timer"
    unique_id: ed448d2f-ac68-43bb-96e1-9b7a6fd4e4a3
    address: 61503
    slave: 1
    scale: 0.5
    precision: 1
    # extra varmvatten, i steg om 0.5 timmar

I can see the following in the log when HA was restarted (with debug logging enabled):

  homeassistant.components.modbus: debug
  pymodbus: debug


2025-01-04 00:13:28.745 DEBUG (MainThread) [pymodbus.logging] Connecting to 192.168.1.248:502.
2025-01-04 00:13:28.745 DEBUG (MainThread) [pymodbus.logging] Connecting comm
2025-01-04 00:13:28.773 DEBUG (MainThread) [pymodbus.logging] Connected to comm
2025-01-04 00:13:28.773 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2025-01-04 00:13:28.777 INFO (MainThread) [homeassistant.components.modbus.modbus] modbus ctc communication open
2025-01-04 00:13:28.777 DEBUG (MainThread) [pymodbus.logging] -> transport: received eof
2025-01-04 00:13:28.782 DEBUG (MainThread) [pymodbus.logging] Connection lost comm due to None
2025-01-04 00:13:28.782 DEBUG (MainThread) [pymodbus.logging] callback_disconnected called: None
2025-01-04 00:13:28.783 DEBUG (MainThread) [pymodbus.logging] Wait comm 100.0 ms before reconnecting.
2025-01-04 00:13:28.884 DEBUG (MainThread) [pymodbus.logging] Connecting to 192.168.1.248:502.
2025-01-04 00:13:28.884 DEBUG (MainThread) [pymodbus.logging] Connecting comm
2025-01-04 00:13:28.891 DEBUG (MainThread) [pymodbus.logging] Connected to comm
2025-01-04 00:13:28.891 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2025-01-04 00:13:48.019 DEBUG (MainThread) [pymodbus.logging] Connecting to 192.168.1.248:502.
2025-01-04 00:13:48.019 DEBUG (MainThread) [pymodbus.logging] Connecting comm
2025-01-04 00:13:48.026 DEBUG (MainThread) [pymodbus.logging] Connected to comm
2025-01-04 00:13:48.026 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2025-01-04 00:13:48.033 DEBUG (MainThread) [pymodbus.logging] -> transport: received eof
2025-01-04 00:13:48.033 DEBUG (MainThread) [pymodbus.logging] Connection lost comm due to None
2025-01-04 00:13:48.033 DEBUG (MainThread) [pymodbus.logging] callback_disconnected called: None
2025-01-04 00:13:48.034 DEBUG (MainThread) [pymodbus.logging] Wait comm 100.0 ms before reconnecting.
2025-01-04 00:13:48.110 ERROR (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61500 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.110 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61503 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.111 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61509 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.111 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61513 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.111 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61517 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.111 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61521 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.112 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61542 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.113 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61671 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.113 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62000 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.113 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62003 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.113 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62005 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.113 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62007 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.113 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62011 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.113 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62015 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.113 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62017 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.114 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62027 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.115 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62037 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.115 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62047 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.115 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62057 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.115 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62067 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.116 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62077 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.116 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62087 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.116 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62097 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.116 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62167 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.120 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62168 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.121 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62169 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.121 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62203 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.121 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62246 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.121 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62275 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.122 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62276 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.122 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62279 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.123 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62107 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.123 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62117 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.123 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62193 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.123 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62186 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.123 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62191 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.123 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62214 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.123 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62234 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.124 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62301 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.125 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62302 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.125 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62303 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.125 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 65001 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2025-01-04 00:13:48.136 DEBUG (MainThread) [pymodbus.logging] Connecting to 192.168.1.248:502.
2025-01-04 00:13:48.136 DEBUG (MainThread) [pymodbus.logging] Connecting comm
2025-01-04 00:13:48.140 DEBUG (MainThread) [pymodbus.logging] Connected to comm
2025-01-04 00:13:48.140 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2025-01-04 00:13:48.156 DEBUG (MainThread) [pymodbus.logging] -> transport: received eof
2025-01-04 00:13:48.156 DEBUG (MainThread) [pymodbus.logging] Connection lost comm due to None
2025-01-04 00:13:48.156 DEBUG (MainThread) [pymodbus.logging] callback_disconnected called: None
2025-01-04 00:13:48.156 DEBUG (MainThread) [pymodbus.logging] Wait comm 100.0 ms before reconnecting.
2025-01-04 00:13:48.257 DEBUG (MainThread) [pymodbus.logging] Connecting to 192.168.1.248:502.
2025-01-04 00:13:48.257 DEBUG (MainThread) [pymodbus.logging] Connecting comm
2025-01-04 00:13:48.261 DEBUG (MainThread) [pymodbus.logging] Connected to comm
2025-01-04 00:13:48.261 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2025-01-04 00:13:48.268 DEBUG (MainThread) [pymodbus.logging] -> transport: received eof
2025-01-04 00:13:48.268 DEBUG (MainThread) [pymodbus.logging] Connection lost comm due to None
2025-01-04 00:13:48.268 DEBUG (MainThread) [pymodbus.logging] callback_disconnected called: None
2025-01-04 00:13:48.269 DEBUG (MainThread) [pymodbus.logging] Wait comm 100.0 ms before reconnecting.
2025-01-04 00:13:48.370 DEBUG (MainThread) [pymodbus.logging] Connecting to 192.168.1.248:502.
2025-01-04 00:13:48.370 DEBUG (MainThread) [pymodbus.logging] Connecting comm
2025-01-04 00:13:48.374 DEBUG (MainThread) [pymodbus.logging] Connected to comm
2025-01-04 00:13:48.374 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2025-01-04 00:13:48.387 DEBUG (MainThread) [pymodbus.logging] -> transport: received eof
2025-01-04 00:13:48.387 DEBUG (MainThread) [pymodbus.logging] Connection lost comm due to None
2025-01-04 00:13:48.387 DEBUG (MainThread) [pymodbus.logging] callback_disconnected called: None
2025-01-04 00:13:48.387 DEBUG (MainThread) [pymodbus.logging] Wait comm 100.0 ms before reconnecting.

Looking back at the previous event when the entities started to appear again, here are some log lines that show what happens

2024-12-27 03:30:02.542 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:02.557 DEBUG (MainThread) [pymodbus.logging] -> transport: received eof
2024-12-27 03:30:02.557 DEBUG (MainThread) [pymodbus.logging] Connection lost comm due to None
2024-12-27 03:30:02.557 DEBUG (MainThread) [pymodbus.logging] callback_disconnected called: None
2024-12-27 03:30:02.557 DEBUG (MainThread) [pymodbus.logging] Wait comm 100.0 ms before reconnecting.
2024-12-27 03:30:02.659 DEBUG (MainThread) [pymodbus.logging] Connecting to 192.168.1.248:502.
2024-12-27 03:30:02.659 DEBUG (MainThread) [pymodbus.logging] Connecting comm
2024-12-27 03:30:02.668 DEBUG (MainThread) [pymodbus.logging] Connected to comm
2024-12-27 03:30:02.669 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:02.679 DEBUG (MainThread) [pymodbus.logging] -> transport: received eof
2024-12-27 03:30:02.680 DEBUG (MainThread) [pymodbus.logging] Connection lost comm due to None
2024-12-27 03:30:02.680 DEBUG (MainThread) [pymodbus.logging] callback_disconnected called: None
2024-12-27 03:30:02.680 DEBUG (MainThread) [pymodbus.logging] Wait comm 100.0 ms before reconnecting.
2024-12-27 03:30:02.781 DEBUG (MainThread) [pymodbus.logging] Connecting to 192.168.1.248:502.
2024-12-27 03:30:02.781 DEBUG (MainThread) [pymodbus.logging] Connecting comm
2024-12-27 03:30:02.787 DEBUG (MainThread) [pymodbus.logging] Connected to comm
2024-12-27 03:30:02.787 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:02.800 DEBUG (MainThread) [pymodbus.logging] -> transport: received eof
2024-12-27 03:30:02.800 DEBUG (MainThread) [pymodbus.logging] Connection lost comm due to None
2024-12-27 03:30:02.800 DEBUG (MainThread) [pymodbus.logging] callback_disconnected called: None
2024-12-27 03:30:02.800 DEBUG (MainThread) [pymodbus.logging] Wait comm 100.0 ms before reconnecting.
2024-12-27 03:30:02.901 DEBUG (MainThread) [pymodbus.logging] Connecting to 192.168.1.248:502.
2024-12-27 03:30:02.901 DEBUG (MainThread) [pymodbus.logging] Connecting comm
2024-12-27 03:30:02.907 DEBUG (MainThread) [pymodbus.logging] Connected to comm
2024-12-27 03:30:02.908 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:02.918 DEBUG (MainThread) [pymodbus.logging] -> transport: received eof
2024-12-27 03:30:02.918 DEBUG (MainThread) [pymodbus.logging] Connection lost comm due to None
2024-12-27 03:30:02.918 DEBUG (MainThread) [pymodbus.logging] callback_disconnected called: None
2024-12-27 03:30:02.918 DEBUG (MainThread) [pymodbus.logging] Wait comm 100.0 ms before reconnecting.
2024-12-27 03:30:03.011 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:03.012 ERROR (MainThread) [pymodbus.logging] Cancel send, because not connected!
2024-12-27 03:30:03.012 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61500 -> Modbus Error: [Connection] Client is not connected
2024-12-27 03:30:03.012 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61503 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.012 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61509 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.012 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61513 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.012 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61517 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.012 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61521 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.013 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61542 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.013 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 61671 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.013 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62000 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.013 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62003 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.013 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62005 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.013 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62007 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.013 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62011 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.013 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62015 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.014 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62017 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.014 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62027 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.014 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62037 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.014 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62047 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.014 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62057 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.014 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62067 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.014 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62077 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.014 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62087 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.014 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62097 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.014 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62167 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.015 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62168 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.015 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62169 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.015 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62203 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.015 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62246 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.015 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62275 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.015 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62276 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.015 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62279 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.015 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62107 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.015 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62117 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.016 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62193 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.016 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62186 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.016 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62191 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.016 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62214 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.016 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62234 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.016 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62301 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.016 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62302 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.016 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 62303 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.016 DEBUG (MainThread) [homeassistant.components.modbus.modbus] Pymodbus: ctc: Error: device: 1 address: 65001 -> Modbus Error: [Connection] Not connected[AsyncModbusTcpClient 192.168.1.248:502]
2024-12-27 03:30:03.020 DEBUG (MainThread) [pymodbus.logging] Connecting to 192.168.1.248:502.
2024-12-27 03:30:03.020 DEBUG (MainThread) [pymodbus.logging] Connecting comm
2024-12-27 03:30:03.029 DEBUG (MainThread) [pymodbus.logging] Connected to comm
2024-12-27 03:30:03.029 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:03.038 DEBUG (MainThread) [pymodbus.logging] -> transport: received eof
2024-12-27 03:30:03.038 DEBUG (MainThread) [pymodbus.logging] Connection lost comm due to None
2024-12-27 03:30:03.038 DEBUG (MainThread) [pymodbus.logging] callback_disconnected called: None
2024-12-27 03:30:03.038 DEBUG (MainThread) [pymodbus.logging] Wait comm 100.0 ms before reconnecting.
2024-12-27 03:30:03.139 DEBUG (MainThread) [pymodbus.logging] Connecting to 192.168.1.248:502.
2024-12-27 03:30:03.139 DEBUG (MainThread) [pymodbus.logging] Connecting comm
2024-12-27 03:30:03.144 DEBUG (MainThread) [pymodbus.logging] Connected to comm
2024-12-27 03:30:03.144 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:07.262 ERROR (MainThread) [homeassistant.components.mqtt.select] Invalid option for select.blauberg_hr_settemp: '21' (valid options: ['16', '18', '20', '22', '24'])
2024-12-27 03:30:13.011 DEBUG (MainThread) [pymodbus.logging] Adding transaction 152
2024-12-27 03:30:13.011 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.011 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0x98 0x0 0x0 0x0 0x6 0x1 0x3 0xf0 0x3c 0x0 0x1
2024-12-27 03:30:13.020 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0x98 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x2 old_data:  addr=None
2024-12-27 03:30:13.020 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0x98 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x2
2024-12-27 03:30:13.020 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.020 DEBUG (MainThread) [pymodbus.logging] Getting transaction 152
2024-12-27 03:30:13.020 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.020 DEBUG (MainThread) [pymodbus.logging] Adding transaction 153
2024-12-27 03:30:13.020 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.020 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0x99 0x0 0x0 0x0 0x6 0x1 0x3 0xf0 0x3f 0x0 0x1
2024-12-27 03:30:13.032 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0x99 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x0 old_data:  addr=None
2024-12-27 03:30:13.032 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0x99 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x0
2024-12-27 03:30:13.032 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.032 DEBUG (MainThread) [pymodbus.logging] Getting transaction 153
2024-12-27 03:30:13.032 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.032 DEBUG (MainThread) [pymodbus.logging] Adding transaction 154
2024-12-27 03:30:13.032 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.033 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0x9a 0x0 0x0 0x0 0x6 0x1 0x3 0xf0 0x45 0x0 0x1
2024-12-27 03:30:13.061 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0x9a 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0xc8 old_data:  addr=None
2024-12-27 03:30:13.061 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0x9a 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0xc8
2024-12-27 03:30:13.061 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.061 DEBUG (MainThread) [pymodbus.logging] Getting transaction 154
2024-12-27 03:30:13.061 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.062 DEBUG (MainThread) [pymodbus.logging] Adding transaction 155
2024-12-27 03:30:13.062 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.062 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0x9b 0x0 0x0 0x0 0x6 0x1 0x3 0xf0 0x49 0x0 0x1
2024-12-27 03:30:13.076 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0x9b 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x1 0xb8 old_data:  addr=None
2024-12-27 03:30:13.076 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0x9b 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x1 0xb8
2024-12-27 03:30:13.076 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.076 DEBUG (MainThread) [pymodbus.logging] Getting transaction 155
2024-12-27 03:30:13.076 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.076 DEBUG (MainThread) [pymodbus.logging] Adding transaction 156
2024-12-27 03:30:13.076 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.077 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0x9c 0x0 0x0 0x0 0x6 0x1 0x3 0xf0 0x4d 0x0 0x1
2024-12-27 03:30:13.086 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0x9c 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0xa old_data:  addr=None
2024-12-27 03:30:13.086 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0x9c 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0xa
2024-12-27 03:30:13.086 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.086 DEBUG (MainThread) [pymodbus.logging] Getting transaction 156
2024-12-27 03:30:13.086 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.086 DEBUG (MainThread) [pymodbus.logging] Adding transaction 157
2024-12-27 03:30:13.086 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.087 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0x9d 0x0 0x0 0x0 0x6 0x1 0x3 0xf0 0x51 0x0 0x1
2024-12-27 03:30:13.096 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0x9d 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x1 old_data:  addr=None
2024-12-27 03:30:13.096 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0x9d 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x1
2024-12-27 03:30:13.096 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.096 DEBUG (MainThread) [pymodbus.logging] Getting transaction 157
2024-12-27 03:30:13.096 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.096 DEBUG (MainThread) [pymodbus.logging] Adding transaction 158
2024-12-27 03:30:13.096 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.096 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0x9e 0x0 0x0 0x0 0x6 0x1 0x3 0xf0 0x66 0x0 0x1
2024-12-27 03:30:13.105 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0x9e 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x0 old_data:  addr=None
2024-12-27 03:30:13.106 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0x9e 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x0
2024-12-27 03:30:13.106 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.106 DEBUG (MainThread) [pymodbus.logging] Getting transaction 158
2024-12-27 03:30:13.106 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.106 DEBUG (MainThread) [pymodbus.logging] Adding transaction 159
2024-12-27 03:30:13.106 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.106 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0x9f 0x0 0x0 0x0 0x6 0x1 0x3 0xf0 0xe7 0x0 0x1
2024-12-27 03:30:13.125 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0x9f 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x2 old_data:  addr=None
2024-12-27 03:30:13.126 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0x9f 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x2
2024-12-27 03:30:13.126 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.126 DEBUG (MainThread) [pymodbus.logging] Getting transaction 159
2024-12-27 03:30:13.126 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.126 DEBUG (MainThread) [pymodbus.logging] Adding transaction 160
2024-12-27 03:30:13.126 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.126 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0xa0 0x0 0x0 0x0 0x6 0x1 0x3 0xf2 0x30 0x0 0x1
2024-12-27 03:30:13.146 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0xa0 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x3c old_data:  addr=None
2024-12-27 03:30:13.146 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0xa0 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x3c
2024-12-27 03:30:13.146 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.146 DEBUG (MainThread) [pymodbus.logging] Getting transaction 160
2024-12-27 03:30:13.146 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.147 DEBUG (MainThread) [pymodbus.logging] Adding transaction 161
2024-12-27 03:30:13.147 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.147 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0xa1 0x0 0x0 0x0 0x6 0x1 0x3 0xf2 0x33 0x0 0x1
2024-12-27 03:30:13.160 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0xa1 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x27 0xf old_data:  addr=None
2024-12-27 03:30:13.160 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0xa1 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x27 0xf
2024-12-27 03:30:13.160 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.160 DEBUG (MainThread) [pymodbus.logging] Getting transaction 161
2024-12-27 03:30:13.160 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.161 DEBUG (MainThread) [pymodbus.logging] Adding transaction 162
2024-12-27 03:30:13.161 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.161 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0xa2 0x0 0x0 0x0 0x6 0x1 0x3 0xf2 0x35 0x0 0x1
2024-12-27 03:30:13.172 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0xa2 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x4 old_data:  addr=None
2024-12-27 03:30:13.172 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0xa2 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x4
2024-12-27 03:30:13.172 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.172 DEBUG (MainThread) [pymodbus.logging] Getting transaction 162
2024-12-27 03:30:13.172 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.172 DEBUG (MainThread) [pymodbus.logging] Adding transaction 163
2024-12-27 03:30:13.172 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.172 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0xa3 0x0 0x0 0x0 0x6 0x1 0x3 0xf2 0x37 0x0 0x1
2024-12-27 03:30:13.183 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0xa3 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x1 0x54 old_data:  addr=None
2024-12-27 03:30:13.183 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0xa3 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x1 0x54
2024-12-27 03:30:13.184 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.184 DEBUG (MainThread) [pymodbus.logging] Getting transaction 163
2024-12-27 03:30:13.184 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.184 DEBUG (MainThread) [pymodbus.logging] Adding transaction 164
2024-12-27 03:30:13.184 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.184 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0xa4 0x0 0x0 0x0 0x6 0x1 0x3 0xf2 0x3b 0x0 0x1
2024-12-27 03:30:13.200 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0xa4 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x1 0x63 old_data:  addr=None
2024-12-27 03:30:13.200 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0xa4 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x1 0x63
2024-12-27 03:30:13.200 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.200 DEBUG (MainThread) [pymodbus.logging] Getting transaction 164
2024-12-27 03:30:13.200 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.201 DEBUG (MainThread) [pymodbus.logging] Adding transaction 165
2024-12-27 03:30:13.201 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.201 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0xa5 0x0 0x0 0x0 0x6 0x1 0x3 0xf2 0x3f 0x0 0x1
2024-12-27 03:30:13.211 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0xa5 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x1 0x44 old_data:  addr=None
2024-12-27 03:30:13.211 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0xa5 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x1 0x44
2024-12-27 03:30:13.211 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.211 DEBUG (MainThread) [pymodbus.logging] Getting transaction 165
2024-12-27 03:30:13.211 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.211 DEBUG (MainThread) [pymodbus.logging] Adding transaction 166
2024-12-27 03:30:13.211 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.211 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0xa6 0x0 0x0 0x0 0x6 0x1 0x3 0xf2 0x41 0x0 0x1
2024-12-27 03:30:13.221 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0xa6 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x3 old_data:  addr=None
2024-12-27 03:30:13.222 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0xa6 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x3
2024-12-27 03:30:13.222 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.222 DEBUG (MainThread) [pymodbus.logging] Getting transaction 166
2024-12-27 03:30:13.222 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.222 DEBUG (MainThread) [pymodbus.logging] Adding transaction 167
2024-12-27 03:30:13.222 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.222 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0xa7 0x0 0x0 0x0 0x6 0x1 0x3 0xf2 0x4b 0x0 0x1
2024-12-27 03:30:13.235 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0xa7 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x1 0x44 old_data:  addr=None
2024-12-27 03:30:13.235 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0xa7 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x1 0x44
2024-12-27 03:30:13.235 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.235 DEBUG (MainThread) [pymodbus.logging] Getting transaction 167
2024-12-27 03:30:13.235 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.235 DEBUG (MainThread) [pymodbus.logging] Adding transaction 168
2024-12-27 03:30:13.235 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.235 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0xa8 0x0 0x0 0x0 0x6 0x1 0x3 0xf2 0x55 0x0 0x1
2024-12-27 03:30:13.250 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0xa8 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x1 0x63 old_data:  addr=None
2024-12-27 03:30:13.250 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0xa8 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x1 0x63
2024-12-27 03:30:13.250 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.250 DEBUG (MainThread) [pymodbus.logging] Getting transaction 168
2024-12-27 03:30:13.250 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.250 DEBUG (MainThread) [pymodbus.logging] Adding transaction 169
2024-12-27 03:30:13.250 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.250 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0xa9 0x0 0x0 0x0 0x6 0x1 0x3 0xf2 0x5f 0x0 0x1
2024-12-27 03:30:13.259 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0xa9 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x2 0x1a old_data:  addr=None
2024-12-27 03:30:13.259 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0xa9 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x2 0x1a
2024-12-27 03:30:13.259 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]
2024-12-27 03:30:13.259 DEBUG (MainThread) [pymodbus.logging] Getting transaction 169
2024-12-27 03:30:13.259 DEBUG (MainThread) [pymodbus.logging] Very short frame (NO MBAP):  wait for more data
2024-12-27 03:30:13.259 DEBUG (MainThread) [pymodbus.logging] Adding transaction 170
2024-12-27 03:30:13.259 DEBUG (MainThread) [pymodbus.logging] Resetting frame - Current Frame in buffer - 
2024-12-27 03:30:13.259 DEBUG (MainThread) [pymodbus.logging] send: 0x0 0xaa 0x0 0x0 0x0 0x6 0x1 0x3 0xf2 0x69 0x0 0x1
2024-12-27 03:30:13.272 DEBUG (MainThread) [pymodbus.logging] recv: 0x0 0xaa 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x32 old_data:  addr=None
2024-12-27 03:30:13.272 DEBUG (MainThread) [pymodbus.logging] Processing: 0x0 0xaa 0x0 0x0 0x0 0x5 0x1 0x3 0x2 0x0 0x32
2024-12-27 03:30:13.272 DEBUG (MainThread) [pymodbus.logging] Factory Response[ReadHoldingRegistersResponse': 3]

What version of Home Assistant Core has the issue?

core-2024.12.5

What was the last working version of Home Assistant Core?

No response

What type of installation are you running?

Home Assistant OS

Integration causing the issue

Modbus

Link to integration documentation on our website

https://www.home-assistant.io/integrations/modbus/

Diagnostics information

No response

Example YAML snippet

No response

Anything in the logs that might be useful for us?

No response

Additional information

No response

@home-assistant
Copy link

home-assistant bot commented Jan 3, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant