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

Unpack requires a buffer of 4 bytes problem with Deye & Ethernet logger #302

Open
jkolo opened this issue Dec 8, 2024 · 11 comments
Open
Assignees
Labels
enhancement New feature or request

Comments

@jkolo
Copy link

jkolo commented Dec 8, 2024

Description

When trying to change the configuration of the Deye SUN-12K-SG04-LP3 inverter a Home Assistant WebSocket API error struct.error: unpack requires a buffer of 4 bytes occurs.

Reproduction Steps

  1. Add the Deye SUN-12K-SG04-LP3 inverter to Home Assistant using the Solarman custom component and deye_sg04lp3.yaml profile.
  2. Attempt to change an adjustable parameter from the Home Assistant UI (e.g. Battery Grid Charging).
  3. Observe the WebSocket error in the logs.

Log

Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/components/websocket_api/commands.py", line 245, in handle_call_service
    response = await hass.services.async_call(
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ...<7 lines>...
    )
    ^
  File "/usr/src/homeassistant/homeassistant/core.py", line 2802, in async_call
    response_data = await coro
                    ^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/core.py", line 2845, in _execute_service
    return await target(service_call)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1007, in entity_service_call
    single_response = await _handle_entity_call(
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^
        hass, entity, func, data, call.context
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    )
    ^
  File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1079, in _handle_entity_call
    result = await task
             ^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/components/number/__init__.py", line 122, in async_set_value
    await entity.async_set_native_value(native_value)
  File "/config/custom_components/solarman/number.py", line 75, in async_set_native_value
    await self.write(value_int if value_int < 0xFFFF else 0xFFFF, get_number(value))
  File "/config/custom_components/solarman/entity.py", line 150, in write
    if await self.coordinator.inverter.call(self.code, self.register, value, ACTION_ATTEMPTS_MAX) > 0 and state:
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 281, in call
    response = await self.safe_read_write(code, start, arg)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 176, in safe_read_write
    if (response := await self.read_write(code, start, arg)) and (length := ilen(response)) and (expected := arg if code < CODE.WRITE_SINGLE_COIL else 1) and length != expected:
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 171, in read_write
    return await self.write_multiple_holding_registers(start, ensure_list(arg))
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 109, in write_multiple_holding_registers
    return await self._tcp_parse_response_adu(write_multiple_registers(self.mb_slave_id, register_addr, values))
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 33, in _tcp_parse_response_adu
    return parse_response_adu(await self._tcp_send_receive_frame(mb_request_frame), mb_request_frame)
  File "/usr/local/lib/python3.13/site-packages/umodbus/client/tcp.py", line 235, in parse_response_adu
    function = create_function_from_response_pdu(resp_pdu, req_adu)
  File "/usr/local/lib/python3.13/site-packages/umodbus/functions.py", line 140, in create_function_from_response_pdu
    return function.create_from_response_pdu(resp_pdu)
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
  File "/usr/local/lib/python3.13/site-packages/umodbus/functions.py", line 1572, in create_from_response_pdu
    starting_address, data = struct.unpack('>HH', resp_pdu[1:5])
                             ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^
struct.error: unpack requires a buffer of 4 bytes

Version

24.12.06_3

Home Assistant Version

2024.12.1

@jkolo jkolo added the bug Something isn't working label Dec 8, 2024
@davidrapan
Copy link
Owner

davidrapan commented Dec 8, 2024

Hi @jkolo, thank your for your report.

This issue should be fixed in v24.12.06 and latest release is v24.12.08_4.

If you are still experiencing the issue after update, please enable debug logging and try to do the action.

@jkolo
Copy link
Author

jkolo commented Dec 8, 2024

After updating to version 24.12.08_4 and, of course, restarting, the error still occurs.

Also, I switched the profile to auto.

[546800674000] Unexpected exception

Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/components/websocket_api/commands.py", line 245, in handle_call_service
    response = await hass.services.async_call(
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ...<7 lines>...
    )
    ^
  File "/usr/src/homeassistant/homeassistant/core.py", line 2802, in async_call
    response_data = await coro
                    ^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/core.py", line 2845, in _execute_service
    return await target(service_call)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1007, in entity_service_call
    single_response = await _handle_entity_call(
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^
        hass, entity, func, data, call.context
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    )
    ^
  File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1079, in _handle_entity_call
    result = await task
             ^^^^^^^^^^
  File "/config/custom_components/solarman/switch.py", line 82, in async_turn_off
    await self.write(value, value)
  File "/config/custom_components/solarman/entity.py", line 150, in write
    if await self.coordinator.inverter.call(self.code, self.register, value, ACTION_ATTEMPTS_MAX) > 0 and state:
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 281, in call
    response = await self.safe_read_write(code, start, arg)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 176, in safe_read_write
    if (response := await self.read_write(code, start, arg)) and (length := ilen(response)) and (expected := arg if code < CODE.WRITE_SINGLE_COIL else 1) and length != expected:
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 171, in read_write
    return await self.write_multiple_holding_registers(start, ensure_list(arg))
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 109, in write_multiple_holding_registers
    return await self._tcp_parse_response_adu(write_multiple_registers(self.mb_slave_id, register_addr, values))
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 33, in _tcp_parse_response_adu
    return parse_response_adu(await self._tcp_send_receive_frame(mb_request_frame), mb_request_frame)
  File "/usr/local/lib/python3.13/site-packages/umodbus/client/tcp.py", line 235, in parse_response_adu
    function = create_function_from_response_pdu(resp_pdu, req_adu)
  File "/usr/local/lib/python3.13/site-packages/umodbus/functions.py", line 140, in create_function_from_response_pdu
    return function.create_from_response_pdu(resp_pdu)
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
  File "/usr/local/lib/python3.13/site-packages/umodbus/functions.py", line 1572, in create_from_response_pdu
    starting_address, data = struct.unpack('>HH', resp_pdu[1:5])
                             ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^
struct.error: unpack requires a buffer of 4 bytes

There was also a second error: Error fetching SUN-12K-SG04-LP3 data: [2110645731] Busy: Currently writing to the device!

@jkolo
Copy link
Author

jkolo commented Dec 8, 2024

It may be useful to know that I use an Ethernet logger LSE3. Intuition tells me that the fix in v24.12.06 version may not have covered this case :)

@davidrapan
Copy link
Owner

davidrapan commented Dec 8, 2024

The fix was exactly for ethernet loggers. 😉

Edit: It's tracked in #262

Edit2:

If you are still experiencing the issue after update, please enable debug logging and try to do the action.

As I mentioned in the first response. And attach the debug log here please.

@jkolo
Copy link
Author

jkolo commented Dec 8, 2024

Damn, intuition to the trash.... Below log.

�[36m2024-12-08 15:52:03.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39905�[0m
�[36m2024-12-08 15:52:03.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:52:03.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 53 87 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:52:04.106 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 53 87 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff e8 ff d2 01 2c 00 00 00 00 00 00 00 00 00 00 09 2f 09 2b 09 22 00 00 00 00 00 00 01 cf 00 a2 ff e5 02 56 00 00 13 88 00 c2 00 4e 00 2b 00 e3 00 a5 00 b9 01 c0 01 a3 01 6e 04 d1 00 00 00 00 01 c0 01 a3 01 6e 04 d1 00 00 09 37 09 2f 09 25 00 00 ff ba 00 00 00 24 ff 65 00 23 ff ac ff ac 13 88 00 00 01 f3 00 00 00 00 02 02 09 37 09 2f 09 24 00 00 00 00 00 00 01 e4 01 08 01 91 04 7d 04 7d 13 88 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 ed 00 00 06 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:52:04.107 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:52:04.109 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:52:04.109 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.462 seconds (success: True)�[0m
�[36m2024-12-08 15:52:09.693 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39910�[0m
�[36m2024-12-08 15:52:09.694 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:52:09.694 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: aa 73 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:52:10.173 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: aa 73 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ea ff d6 01 2c 00 00 00 00 00 00 00 00 00 00 09 30 09 2d 09 24 00 00 00 00 00 00 01 b1 00 a3 ff e5 02 39 00 00 13 88 00 b5 00 4f 00 2b 00 d8 00 ad 00 b9 01 bc 01 a4 01 6d 04 cd 00 00 00 00 01 bc 01 a4 01 6d 04 cd 00 00 09 37 09 2f 09 25 00 00 ff b0 00 00 00 24 ff 64 00 23 ff ab ff ab 13 88 00 00 01 d5 00 00 00 00 01 e4 09 37 09 31 09 26 00 00 00 00 00 00 01 e0 01 08 01 90 04 78 04 78 13 88 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 65 00 00 06 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:52:10.174 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:52:10.176 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:52:10.176 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.485 seconds (success: True)�[0m
�[36m2024-12-08 15:52:12.777 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Call 10 ~ 145 | 0x0091: 1 ...�[0m
�[36m2024-12-08 15:52:12.777 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: e5 35 00 00 00 09 01 10 00 91 00 01 02 00 01�[0m
�[36m2024-12-08 15:52:12.960 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: e5 35 00 00 00 03 01 10 00�[0m
�[36m2024-12-08 15:52:12.961 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Call 10 ~ 145 | 0x0091: 1 failed, attempts left: 4 [error: unpack requires a buffer of 4 bytes]�[0m
�[36m2024-12-08 15:52:13.162 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 98 62 00 00 00 09 01 10 00 91 00 01 02 00 01�[0m
�[36m2024-12-08 15:52:13.424 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 98 62 00 00 00 03 01 10 00�[0m
�[36m2024-12-08 15:52:13.425 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Call 10 ~ 145 | 0x0091: 1 failed, attempts left: 3 [error: unpack requires a buffer of 4 bytes]�[0m
�[36m2024-12-08 15:52:13.626 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: b3 47 00 00 00 09 01 10 00 91 00 01 02 00 01�[0m
�[36m2024-12-08 15:52:13.878 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: b3 47 00 00 00 03 01 10 00�[0m
�[36m2024-12-08 15:52:13.879 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Call 10 ~ 145 | 0x0091: 1 failed, attempts left: 2 [error: unpack requires a buffer of 4 bytes]�[0m
�[36m2024-12-08 15:52:14.080 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 9e f0 00 00 00 09 01 10 00 91 00 01 02 00 01�[0m
�[36m2024-12-08 15:52:14.343 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 9e f0 00 00 00 03 01 10 00�[0m
�[36m2024-12-08 15:52:14.344 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Call 10 ~ 145 | 0x0091: 1 failed, attempts left: 1 [error: unpack requires a buffer of 4 bytes]�[0m
�[36m2024-12-08 15:52:14.545 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: eb b5 00 00 00 09 01 10 00 91 00 01 02 00 01�[0m
�[36m2024-12-08 15:52:14.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39915�[0m
�[36m2024-12-08 15:52:14.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: eb b5 00 00 00 03 01 10 00�[0m
�[36m2024-12-08 15:52:14.798 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Call 10 ~ 145 | 0x0091: 1 failed, attempts left: 0, aborting. [error: unpack requires a buffer of 4 bytes]�[0m
�[31m2024-12-08 15:52:14.799 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [546223777120] Unexpected exception
Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/components/websocket_api/commands.py", line 245, in handle_call_service
    response = await hass.services.async_call(
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ...<7 lines>...
    )
    ^
  File "/usr/src/homeassistant/homeassistant/core.py", line 2802, in async_call
    response_data = await coro
                    ^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/core.py", line 2845, in _execute_service
    return await target(service_call)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1007, in entity_service_call
    single_response = await _handle_entity_call(
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^
        hass, entity, func, data, call.context
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    )
    ^
  File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1079, in _handle_entity_call
    result = await task
             ^^^^^^^^^^
  File "/config/custom_components/solarman/switch.py", line 77, in async_turn_on
    await self.write(value, value)
  File "/config/custom_components/solarman/entity.py", line 150, in write
    if await self.coordinator.inverter.call(self.code, self.register, value, ACTION_ATTEMPTS_MAX) > 0 and state:
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 281, in call
    response = await self.safe_read_write(code, start, arg)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 176, in safe_read_write
    if (response := await self.read_write(code, start, arg)) and (length := ilen(response)) and (expected := arg if code < CODE.WRITE_SINGLE_COIL else 1) and length != expected:
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 171, in read_write
    return await self.write_multiple_holding_registers(start, ensure_list(arg))
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 109, in write_multiple_holding_registers
    return await self._tcp_parse_response_adu(write_multiple_registers(self.mb_slave_id, register_addr, values))
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solarman/api.py", line 33, in _tcp_parse_response_adu
    return parse_response_adu(await self._tcp_send_receive_frame(mb_request_frame), mb_request_frame)
  File "/usr/local/lib/python3.13/site-packages/umodbus/client/tcp.py", line 235, in parse_response_adu
    function = create_function_from_response_pdu(resp_pdu, req_adu)
  File "/usr/local/lib/python3.13/site-packages/umodbus/functions.py", line 140, in create_function_from_response_pdu
    return function.create_from_response_pdu(resp_pdu)
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
  File "/usr/local/lib/python3.13/site-packages/umodbus/functions.py", line 1572, in create_from_response_pdu
    starting_address, data = struct.unpack('>HH', resp_pdu[1:5])
                             ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^
struct.error: unpack requires a buffer of 4 bytes�[0m
�[36m2024-12-08 15:52:15.652 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:52:15.652 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: f2 7b 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:52:16.111 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: f2 7b 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff e8 ff d3 01 2c 00 00 00 00 00 00 00 00 00 00 09 2f 09 2d 09 23 00 00 00 00 00 00 01 b4 00 a2 ff e4 02 3a 00 00 13 88 00 b8 00 4f 00 2b 00 da 00 a9 00 b9 01 b1 01 b2 01 70 04 d3 00 00 00 00 01 b1 01 b2 01 70 04 d3 00 00 09 36 09 32 09 26 00 00 ff ba 00 00 00 24 ff 64 00 23 ff ab ff ab 13 88 00 00 01 d8 00 00 00 00 01 e5 09 35 09 31 09 24 00 00 00 00 00 00 01 d5 01 16 01 93 04 7e 04 7e 13 88 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 0f 00 00 05 fe 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:52:16.111 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:52:16.116 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:52:16.118 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 1.471 seconds (success: True)�[0m
�[36m2024-12-08 15:52:20.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39920�[0m
�[36m2024-12-08 15:52:20.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:52:20.652 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: b1 ea 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:52:22.987 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: b1 ea 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ed ff db 01 2c 00 00 00 00 00 00 00 00 00 00 09 2d 09 2e 09 22 00 00 00 00 00 00 01 f2 00 22 00 25 02 39 00 00 13 88 00 cf 00 2d 00 2b 00 ee 00 7e 00 cb 01 fb 01 2b 01 aa 04 d0 00 00 00 00 01 fb 01 2b 01 aa 04 d0 00 00 09 33 09 31 09 24 ff ec ff ec ff ec ff e3 ff e4 ff e4 ff ab ff ab 13 88 00 00 01 d5 00 00 00 00 01 e4 09 33 09 32 09 24 00 00 00 00 00 00 01 de 01 0f 01 8e 04 7b 04 7b 13 88 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 9f 00 00 05 f5 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:52:22.987 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:52:22.991 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:52:22.992 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 2.345 seconds (success: True)�[0m
�[36m2024-12-08 15:52:27.649 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39925�[0m
�[36m2024-12-08 15:52:27.649 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:52:27.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: e8 01 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:52:28.095 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: e8 01 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff eb ff d8 01 2c 00 00 00 00 00 00 00 00 00 00 09 2c 09 30 09 23 00 00 00 00 00 00 01 f0 00 21 00 23 02 34 00 00 13 88 00 cf 00 2d 00 2b 00 ed 00 79 00 cb 01 f4 01 1e 01 ad 04 bf 00 00 00 00 01 f4 01 1e 01 ad 04 bf 00 00 09 32 09 32 09 25 ff ec ff ec ff ec ff e4 ff e5 ff e5 ff ae ff ae 13 88 00 00 01 d4 00 00 00 00 01 e2 09 32 09 32 09 23 00 00 00 00 00 00 01 d8 01 03 01 92 04 6d 04 6d 13 88 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 e8 00 00 05 f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:52:28.095 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:52:28.098 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:52:28.098 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.452 seconds (success: True)�[0m
�[36m2024-12-08 15:52:32.653 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 2 query requests. #39930�[0m
�[36m2024-12-08 15:52:32.653 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0500 - 0558 | 0x01F4 - 0x022E # 059 ...�[0m
�[36m2024-12-08 15:52:32.654 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 5e 59 00 00 00 06 01 03 01 f4 00 3b�[0m
�[36m2024-12-08 15:52:33.011 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 5e 59 00 00 00 79 01 03 76 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 00 00 00 3f 00 00 0f 8e 00 00 0e 7b 00 00 00 ce 00 00 2a eb 00 00 03 3d 00 00 00 92 3e 5b 00 00 00 06 00 00 00 00 00 00 00 00 19 58 00 00 00 00 00 00 00 00 00 00 04 e2 05 48 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 01 0a 00 00 01 00 05 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:52:33.012 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0500 - 0558 | 0x01F4 - 0x022E # 059 succeeded.�[0m
�[36m2024-12-08 15:52:33.012 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:52:33.012 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 3d fb 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:52:33.526 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 3d fb 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ee ff dd 01 2c 00 00 00 00 00 00 00 00 00 00 09 2c 09 2e 09 21 00 00 00 00 00 00 01 f2 00 22 00 24 02 38 00 00 13 88 00 cf 00 2d 00 2b 00 ee 00 7e 00 ca 01 f8 01 25 01 a6 04 c3 00 00 00 00 01 f8 01 25 01 a6 04 c3 00 00 09 31 09 31 09 23 ff ec ff ec ff ec ff e3 ff e4 ff e5 ff ac ff ac 13 88 00 00 01 d5 00 00 00 00 01 e4 09 32 09 31 09 23 00 00 00 00 00 00 01 db 01 09 01 8b 04 6f 04 6f 13 88 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 09 27 00 00 05 ec 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:52:33.527 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:52:33.533 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 90 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:52:33.533 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.885 seconds (success: True)�[0m
�[36m2024-12-08 15:52:38.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39935�[0m
�[36m2024-12-08 15:52:38.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:52:38.652 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: e6 ba 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:52:39.089 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: e6 ba 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ed ff db 01 2c 00 00 00 00 00 00 00 00 00 00 09 2a 09 2c 09 20 00 00 00 00 00 00 01 f0 00 22 00 24 02 36 00 00 13 88 00 cf 00 2d 00 2b 00 ed 00 7e 00 ca 01 fb 01 2a 01 aa 04 cf 00 00 00 00 01 fb 01 2a 01 aa 04 cf 00 00 09 30 09 2f 09 22 ff ec ff ec ff ec ff e3 ff e4 ff e4 ff ab ff ab 13 88 00 00 01 d3 00 00 00 00 01 e1 09 31 09 2f 09 21 00 00 00 00 00 00 01 de 01 0e 01 8e 04 7a 04 7a 13 88 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 91 00 00 05 e8 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:52:39.090 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:52:39.093 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:52:39.094 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.447 seconds (success: True)�[0m
�[36m2024-12-08 15:52:43.648 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39940�[0m
�[36m2024-12-08 15:52:43.649 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:52:43.649 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: e6 af 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:52:44.146 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: e6 af 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ed ff dc 01 2c 00 00 00 00 00 00 00 00 00 00 09 28 09 30 09 1f 00 00 00 00 00 00 02 0f 00 22 00 24 02 55 00 00 13 88 00 d9 00 2d 00 2b 00 f5 00 7d 00 cc 02 0c 01 22 01 ad 04 db 00 00 00 00 02 0c 01 22 01 ad 04 db 00 00 09 30 09 32 09 23 ff ec ff ec ff ec ff e4 ff e4 ff e4 ff ac ff ac 13 88 00 00 01 f3 00 00 00 00 02 01 09 31 09 32 09 23 00 00 00 00 00 00 01 f0 01 06 01 91 04 87 04 87 13 88 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 55 00 00 05 e3 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:52:44.147 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:52:44.152 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:52:44.153 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.506 seconds (success: True)�[0m
�[36m2024-12-08 15:52:48.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39945�[0m
�[36m2024-12-08 15:52:48.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:52:48.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 8e 66 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:52:49.153 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 8e 66 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ec ff d9 01 2c 00 00 00 00 00 00 00 00 00 00 09 2d 09 2e 09 22 00 00 00 00 00 00 01 f3 00 22 00 24 02 39 00 00 13 88 00 d0 00 2d 00 2b 00 ee 00 7b 00 cb 01 f8 01 1d 01 af 04 c4 00 00 00 00 01 f8 01 1d 01 af 04 c4 00 00 09 35 09 32 09 24 ff ec ff ec ff ec ff e4 ff e5 ff e5 ff ae ff ae 13 88 00 00 01 d7 00 00 00 00 01 e7 09 33 09 31 09 21 00 00 00 00 00 00 01 dc 01 02 01 94 04 72 04 72 13 88 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 07 d9 00 00 05 e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:52:49.154 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:52:49.158 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:52:49.158 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.512 seconds (success: True)�[0m
�[36m2024-12-08 15:52:53.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39950�[0m
�[36m2024-12-08 15:52:53.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:52:53.652 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 6a 77 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:52:54.110 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 6a 77 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff eb ff d8 01 2c 00 00 00 00 00 00 00 00 00 00 09 2c 09 2e 09 1f 00 00 00 00 00 00 01 fc 00 22 00 24 02 42 00 00 13 88 00 d4 00 2d 00 2b 00 f2 00 7a 00 d0 01 fd 01 20 01 b5 04 d2 00 00 00 00 01 fd 01 20 01 b5 04 d2 00 00 09 34 09 32 09 23 ff ec ff ec ff ec ff e4 ff e5 ff e4 ff ad ff ad 13 88 00 00 01 e0 00 00 00 00 01 ef 09 32 09 31 09 21 00 00 00 00 00 00 01 e1 01 05 01 99 04 7f 04 7f 13 88 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 2c 00 00 05 dc 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:52:54.111 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:52:54.115 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:52:54.115 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.468 seconds (success: True)�[0m
�[36m2024-12-08 15:52:58.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39955�[0m
�[36m2024-12-08 15:52:58.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:52:58.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: c6 93 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:52:59.158 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: c6 93 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ec ff da 01 2c 00 00 00 00 00 00 00 00 00 00 09 29 09 2b 09 1e 00 00 00 00 00 00 01 fc 00 21 00 23 02 40 00 00 13 88 00 d4 00 2d 00 2b 00 f2 00 78 00 cf 01 fd 01 20 01 b6 04 d3 00 00 00 00 01 fd 01 20 01 b6 04 d3 00 00 09 2f 09 2d 09 1f ff ec ff ec ff ec ff e4 ff e5 ff e5 ff ae ff ae 13 88 00 00 01 e0 00 00 00 00 01 ee 09 2f 09 2c 09 1f 00 00 00 00 00 00 01 e1 01 05 01 9b 04 81 04 81 13 88 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 62 00 00 05 d7 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:52:59.159 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:52:59.162 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:52:59.162 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.515 seconds (success: True)�[0m
�[36m2024-12-08 15:53:03.653 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 4 query requests. #39960�[0m
�[36m2024-12-08 15:53:03.654 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0062 - 0064 | 0x003E - 0x0040 # 003 ...�[0m
�[36m2024-12-08 15:53:03.654 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 6d 3c 00 00 00 06 01 03 00 3e 00 03�[0m
�[36m2024-12-08 15:53:03.862 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 6d 3c 00 00 00 09 01 03 06 18 0c 08 0f 36 23�[0m
�[36m2024-12-08 15:53:03.863 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0062 - 0064 | 0x003E - 0x0040 # 003 succeeded.�[0m
�[36m2024-12-08 15:53:03.863 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0210 - 0223 | 0x00D2 - 0x00DF # 014 ...�[0m
�[36m2024-12-08 15:53:03.863 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 4e 7b 00 00 00 06 01 03 00 d2 00 0e�[0m
�[36m2024-12-08 15:53:04.144 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 4e 7b 00 00 00 1f 01 03 1c 16 d0 00 00 00 e9 01 2c 00 30 14 dc 00 00 04 7e 00 fd 01 40 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:53:04.145 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0210 - 0223 | 0x00D2 - 0x00DF # 014 succeeded.�[0m
�[36m2024-12-08 15:53:04.145 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0500 - 0558 | 0x01F4 - 0x022E # 059 ...�[0m
�[36m2024-12-08 15:53:04.146 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: e0 ad 00 00 00 06 01 03 01 f4 00 3b�[0m
�[36m2024-12-08 15:53:04.518 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: e0 ad 00 00 00 79 01 03 76 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 00 00 00 3f 00 00 0f 8e 00 00 0e 7b 00 00 00 ce 00 00 2a eb 00 00 03 3d 00 00 00 92 3e 5b 00 00 00 06 00 00 00 00 00 00 00 00 19 58 00 00 00 00 00 00 00 00 00 00 04 e2 05 48 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 01 0a 00 00 01 00 05 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:53:04.519 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0500 - 0558 | 0x01F4 - 0x022E # 059 succeeded.�[0m
�[36m2024-12-08 15:53:04.519 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:53:04.519 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 25 39 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:53:05.033 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 25 39 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ed ff db 01 2c 00 00 00 00 00 00 00 00 00 00 09 29 09 2c 09 1d 00 00 00 00 00 00 01 ff 00 22 00 24 02 45 00 00 13 88 00 d4 00 2d 00 2b 00 f2 00 78 00 d1 02 07 01 23 01 bb 04 e5 00 00 00 00 02 07 01 23 01 bb 04 e5 00 00 09 31 09 2e 09 20 ff ec ff ec ff ec ff e4 ff e4 ff e5 ff ad ff ad 13 88 00 00 01 e3 00 00 00 00 01 f2 09 31 09 2c 09 20 00 00 00 00 00 00 01 eb 01 07 01 a0 04 92 04 92 13 88 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 b8 00 00 05 d3 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:53:05.034 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:53:05.041 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 104 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:53:05.041 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 1.393 seconds (success: True)�[0m
�[36m2024-12-08 15:53:09.648 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39965�[0m
�[36m2024-12-08 15:53:09.649 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:53:09.649 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: a2 e6 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:53:10.132 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: a2 e6 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ed ff dc 01 2c 00 00 00 00 00 00 00 00 00 00 09 2d 09 2d 09 20 00 00 00 00 00 00 02 02 00 22 00 24 02 48 00 00 13 88 00 d5 00 2d 00 2b 00 f3 00 7c 00 d1 02 03 01 27 01 ba 04 e4 00 00 00 00 02 03 01 27 01 ba 04 e4 00 00 09 32 09 2f 09 21 ff ec ff ec ff ec ff e3 ff e5 ff e5 ff ad ff ad 13 88 00 00 01 e5 00 00 00 00 01 f5 09 31 09 2f 09 20 00 00 00 00 00 00 01 e6 01 0c 01 9f 04 91 04 91 13 88 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 e4 00 00 05 ce 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:53:10.132 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:53:10.135 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:53:10.135 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.488 seconds (success: True)�[0m
�[36m2024-12-08 15:53:14.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39970�[0m
�[36m2024-12-08 15:53:14.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:53:14.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: b3 91 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:53:15.095 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: b3 91 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ec ff d9 01 2c 00 00 00 00 00 00 00 00 00 00 09 2c 09 2c 09 1f 00 00 00 00 00 00 01 f8 00 21 00 24 02 3d 00 00 13 88 00 d2 00 2d 00 2b 00 f0 00 7c 00 d1 01 fa 01 2d 01 ba 04 e1 00 00 00 00 01 fa 01 2d 01 ba 04 e1 00 00 09 33 09 2d 09 21 ff ec ff ec ff ec ff e4 ff e5 ff e5 ff ae ff ae 13 88 00 00 01 dc 00 00 00 00 01 eb 09 32 09 2e 09 20 00 00 00 00 00 00 01 de 01 12 01 9f 04 8f 04 8f 13 88 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 f1 00 00 05 cb 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:53:15.095 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:53:15.097 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:53:15.097 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.451 seconds (success: True)�[0m
�[36m2024-12-08 15:53:19.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39975�[0m
�[36m2024-12-08 15:53:19.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:53:19.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: ea 18 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:53:20.136 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: ea 18 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ec ff d9 01 2c 00 00 00 00 00 00 00 00 00 00 09 2d 09 2c 09 1f 00 00 00 00 00 00 01 f0 00 21 00 23 02 34 00 00 13 88 00 ce 00 2d 00 2b 00 ec 00 7c 00 d2 01 fa 01 29 01 bc 04 df 00 00 00 00 01 fa 01 29 01 bc 04 df 00 00 09 33 09 2f 09 21 ff ec ff ec ff ec ff e4 ff e5 ff e5 ff ae ff ae 13 88 00 00 01 d4 00 00 00 00 01 e2 09 33 09 2e 09 21 00 00 00 00 00 00 01 de 01 0e 01 a1 04 8d 04 8d 13 88 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 15 00 00 05 c5 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:53:20.136 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:53:20.138 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:53:20.139 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.491 seconds (success: True)�[0m
�[36m2024-12-08 15:53:24.650 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39980�[0m
�[36m2024-12-08 15:53:24.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:53:24.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: a9 c7 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:53:25.094 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: a9 c7 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ec ff da 01 2c 00 00 00 00 00 00 00 00 00 00 09 2b 09 2a 09 1e 00 00 00 00 00 00 01 ef 00 22 00 24 02 35 00 00 13 83 00 ce 00 2d 00 2b 00 ed 00 7b 00 d4 01 f9 01 2e 01 bf 04 e6 00 00 00 00 01 f9 01 2e 01 bf 04 e6 00 00 09 32 09 2d 09 1f ff ec ff ec ff ec ff e4 ff e4 ff e4 ff ac ff ac 13 83 00 00 01 d3 00 00 00 00 01 e1 09 2b 09 2c 09 18 00 00 00 00 00 00 01 dd 01 12 01 a3 04 92 04 92 13 83 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 08 b2 00 00 05 c1 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:53:25.094 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:53:25.106 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:53:25.107 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.459 seconds (success: True)�[0m
�[36m2024-12-08 15:53:29.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. #39985�[0m
�[36m2024-12-08 15:53:29.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:53:29.652 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: f9 e6 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:53:31.049 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: f9 e6 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ed ff db 01 2c 00 00 00 00 00 00 00 00 00 00 09 2c 09 2a 09 1e 00 00 00 00 00 00 01 f8 00 22 00 24 02 3e 00 00 13 88 00 d3 00 2e 00 2b 00 f1 00 7d 00 d2 01 f7 01 1f 01 b9 04 cf 00 00 00 00 01 f7 01 1f 01 b9 04 cf 00 00 09 30 09 2d 09 1f ff ec ff ec ff ec ff e4 ff e4 ff e5 ff ad ff ad 13 88 00 00 01 dc 00 00 00 00 01 eb 09 32 09 2e 09 20 00 00 00 00 00 00 01 db 01 03 01 9e 04 7c 04 7c 13 88 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 06 6f 00 00 05 bb 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:53:31.050 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:53:31.054 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:53:31.054 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 1.407 seconds (success: True)�[0m
�[36m2024-12-08 15:53:35.651 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 2 query requests. #39990�[0m
�[36m2024-12-08 15:53:35.652 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0500 - 0558 | 0x01F4 - 0x022E # 059 ...�[0m
�[36m2024-12-08 15:53:35.652 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 32 ad 00 00 00 06 01 03 01 f4 00 3b�[0m
�[36m2024-12-08 15:53:36.026 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 32 ad 00 00 00 79 01 03 76 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 00 00 00 3f 00 00 0f 8e 00 00 0e 7b 00 00 00 ce 00 00 2a eb 00 00 03 3d 00 00 00 92 3e 5b 00 00 00 06 00 00 00 00 00 00 00 00 19 58 00 00 00 00 00 00 00 00 00 00 04 e2 05 48 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 01 0a 00 00 01 00 05 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:53:36.027 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0500 - 0558 | 0x01F4 - 0x022E # 059 succeeded.�[0m
�[36m2024-12-08 15:53:36.027 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 ...�[0m
�[36m2024-12-08 15:53:36.028 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 46 eb 00 00 00 06 01 03 02 4a 00 7b�[0m
�[36m2024-12-08 15:53:36.541 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 46 eb 00 00 00 f9 01 03 f6 04 7e 14 e5 00 30 00 00 ff ec ff d9 01 2c 00 00 00 00 00 00 00 00 00 00 09 29 09 2c 09 20 00 00 00 00 00 00 01 f4 00 21 00 24 02 39 00 00 13 83 00 d0 00 2d 00 2b 00 ee 00 7a 00 d1 01 f3 01 26 01 b4 04 cd 00 00 00 00 01 f3 01 26 01 b4 04 cd 00 00 09 2e 09 2f 09 21 ff ec ff ec ff ec ff e3 ff e5 ff e5 ff ad ff ad 13 83 00 00 01 d7 00 00 00 00 01 e6 09 28 09 28 09 1b 00 00 00 00 00 00 01 d6 01 0b 01 99 04 7a 04 7a 13 83 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 b7 00 00 05 b5 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00�[0m
�[36m2024-12-08 15:53:36.542 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 # 123 succeeded.�[0m
�[36m2024-12-08 15:53:36.547 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 90 new values to the Coordinator. [Previous State: Connected (1)]�[0m
�[36m2024-12-08 15:53:36.548 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.900 seconds (success: True)�[0m

@davidrapan
Copy link
Owner

davidrapan commented Dec 8, 2024

What is that messed up formatting? �[0m

Anyway it looks like your sticks replies are even worse... they are missing not just quantity block but also register address...

The reply is eb b5 00 00 00 03 01 10 00 and should be eb b5 00 00 00 06 01 10 00 91 00 01. Where 00 91 is the address and 00 01 is quantity and in replies acts as confirmation of successful write.

@davidrapan
Copy link
Owner

davidrapan commented Dec 8, 2024

The error is just from parsing of the response so the question is, does the value change in the inverter or not?

@davidrapan
Copy link
Owner

If yes then try fix: Workaround for modbus tcp responses w/o address and let me know. 😉

@davidrapan davidrapan changed the title Error: struct.error: unpack requires a buffer of 4 bytes Unpack requires a buffer of 4 bytes problem with Deye & Ethernet logger Dec 9, 2024
@davidrapan davidrapan added enhancement New feature or request and removed bug Something isn't working labels Dec 9, 2024
@jkolo
Copy link
Author

jkolo commented Dec 9, 2024

What is that messed up formatting? �[0m

I downloaded the log in the file, so �[0m is one of the ANSI coloring codes.

The error is just from parsing of the response so the question is, does the value change in the inverter or not?

On the inverter, the change occurs. Only in Home Assistatnt an error popup pops up.
obraz

If yes then try fix: Workaround for modbus tcp responses w/o address and let me know. 😉

I will try it tonight and let you know.

@jkolo
Copy link
Author

jkolo commented Dec 10, 2024

Well, it's "worse" now. In the previous version an error would pop up, but the switch would remain in the state it was set in. Now the error does not pop up, but.... Turning the switch on works ok: the switch switches, a logbook entry appears and the inverter responds. When trying to switch off, the switch toggles, but no entry in the logbook and after a while it returns to the on state. Interestingly the inverter responds correctly to the option being switched off and does not switch the option back on even though on the interface the switch returns to the on state. Below is an overview video and log.

Nagranie.ekranu_20241211_000152.webm
2024-12-11 00:01:28.668 DEBUG (MainThread) [custom_components.solarman] async_setup_entry({'created_at': '2024-10-31T23:58:26.896638+00:00', 'data': {'battery_life_cycle_rating': 6000, 'battery_nominal_voltage': 48, 'inverter_host': '10.38.107.18', 'inverter_mb_slave_id': 1, 'inverter_port': 8899, 'inverter_serial': 2110645731, 'lookup_file': 'deye_sg04lp3.yaml', 'name': 'SUN-12K-SG04-LP3'}, 'discovery_keys': {}, 'disabled_by': None, 'domain': 'solarman', 'entry_id': '01JBJG892GNQX5T5R0RYX1VZ2Q', 'minor_version': 5, 'modified_at': '2024-12-10T22:23:48.284280+00:00', 'options': {'additional_options': {'battery_nominal_voltage': 51, 'mppt': 2}, 'host': '10.38.107.18'}, 'pref_disable_new_entities': False, 'pref_disable_polling': False, 'source': 'user', 'title': 'SUN-12K-SG04-LP3', 'unique_id': 'solarman_2110645731', 'version': 1})
2024-12-11 00:01:28.669 DEBUG (MainThread) [custom_components.solarman] async_setup: coordinator.async_config_entry_first_refresh
2024-12-11 00:01:28.669 DEBUG (MainThread) [custom_components.solarman.discovery] discover
2024-12-11 00:01:28.670 DEBUG (MainThread) [custom_components.solarman.discovery] _discover_all: Broadcasting on 10.38.107.18
2024-12-11 00:01:28.670 DEBUG (MainThread) [custom_components.solarman.discovery] _discover
2024-12-11 00:01:28.674 DEBUG (MainThread) [custom_components.solarman.discovery] _discover: [10.38.107.18, 402A8F2CD64B, 2110645731]
2024-12-11 00:01:28.677 DEBUG (MainThread) [custom_components.solarman.provider] Device autodetection is enabled
2024-12-11 00:01:28.678 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 0 query requests. ^-1
2024-12-11 00:01:28.678 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0000 - 0022 | 0x0000 - 0x0016 #023 ...
2024-12-11 00:01:28.679 INFO (MainThread) [custom_components.solarman.api] [2110645731] Connecting to 10.38.107.18:8899
2024-12-11 00:01:28.685 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: a5 17 00 10 45 9c 00 e3 e5 cd 7d 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 03 00 00 00 17 05 c4 00 15
2024-12-11 00:01:29.790 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] V5_ETHERNET_DETECTED: a5 17 00 10 45 03 00 e3 02
2024-12-11 00:01:29.790 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: a5 17 00 10 45 03 00 e3 02
2024-12-11 00:01:29.791 DEBUG (MainThread) [custom_components.solarman.api] frame_len does not match payload_len.
2024-12-11 00:01:29.791 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0000 - 0022 | 0x0000 - 0x0016 #023 failed, attempts left: 4 [V5FrameError: V5 frame contains invalid start or end values]
2024-12-11 00:01:29.992 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 92 9d 00 00 00 06 01 03 00 00 00 17
2024-12-11 00:01:30.295 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 92 9d 00 00 00 31 01 03 2e 00 05 00 01 01 04 32 34 30 35 32 33 36 37 31 33 00 00 00 00 00 00 18 07 d2 07 00 00 20 06 11 44 00 00 10 01 c0 47 00 00 d4 c0 00 01 ff ff
2024-12-11 00:01:30.295 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0000 - 0022 | 0x0000 - 0x0016 #023 succeeded, response: [5, 1, 260, 12852, 12341, 12851, 13879, 12595, 0, 0, 0, 6151, 53767, 0, 8198, 4420, 0, 4097, 49223, 0, 54464, 1, 65535]
2024-12-11 00:01:30.295 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 1 new values to the Coordinator. [Previous State: Disconnected (-1)]
2024-12-11 00:01:31.308 DEBUG (MainThread) [custom_components.solarman.parser] Defaults for update_interval: 60, code: 3, min_span: 25, max_size: 125, digits: 6
2024-12-11 00:01:31.314 DEBUG (MainThread) [custom_components.solarman.api] {'connections': {('mac', '40:2a:8f:2c:d6:4b')}, 'identifiers': {('solarman', 2110645731)}, 'serial_number': 2110645731, 'manufacturer': 'Deye', 'model': 'SG04LP3', 'name': 'SUN-12K-SG04-LP3'}
2024-12-11 00:01:31.321 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 5 query requests. ^0
2024-12-11 00:01:31.322 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0000 - 0124 | 0x0000 - 0x007C #125 ...
2024-12-11 00:01:31.322 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 7d 19 00 00 00 06 01 03 00 00 00 7d
2024-12-11 00:01:31.769 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 7d 19 00 00 00 fd 01 03 fa 00 05 00 01 01 04 32 34 30 35 32 33 36 37 31 33 00 00 00 00 00 00 18 07 d2 07 00 00 20 06 11 44 00 00 10 01 c0 47 00 00 d4 c0 00 01 ff ff 00 00 00 06 00 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff 18 0c 0b 00 03 07 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 00 01 00 64 00 64 ff ff 00 00 04 4c 00 01 00 00 ff ff ff ff ff ff 00 00 00 01 ff ff ff ff ff ff ff ff 00 00 ff ff 00 00 ff ff ff ff ff ff 00 00 00 01 16 80 16 80 15 90 01 2c 11 94 00 14 00 5a 00 00 00 05 00 78 00 f0 ff ff 00 01 00 01 00 19 03 de 00 05 00 3c 00 0a 11 f8 14 50 12 8e 00 f0 00 00 17 0c 00 5a
2024-12-11 00:01:31.770 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0000 - 0124 | 0x0000 - 0x007C #125 succeeded, response: [5, 1, 260, 12852, 12341, 12851, 13879, 12595, 0, 0, 0, 6151, 53767, 0, 8198, 4420, 0, 4097, 49223, 0, 54464, 1, 65535, 0, 6, 0, 0, 0, 65535, 65535, 0, 0, 0, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 65535, 6156, 2816, 775, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 1, 100, 100, 65535, 0, 1100, 1, 0, 65535, 65535, 65535, 0, 1, 65535, 65535, 65535, 65535, 0, 65535, 0, 65535, 65535, 65535, 0, 1, 5760, 5760, 5520, 300, 4500, 20, 90, 0, 5, 120, 240, 65535, 1, 1, 25, 990, 5, 60, 10, 4600, 5200, 4750, 240, 0, 5900, 90]
2024-12-11 00:01:31.771 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0125 - 0223 | 0x007D - 0x00DF #099 ...
2024-12-11 00:01:31.771 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 17 60 00 00 00 06 01 03 00 7d 00 63
2024-12-11 00:01:32.234 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 17 60 00 00 00 c9 01 03 c6 00 28 13 24 00 0f 00 96 00 00 00 00 15 7c 00 00 00 00 13 ec 00 5f 15 18 00 64 00 01 01 f4 00 00 00 01 00 02 2e e0 00 0b 00 01 00 00 00 01 00 64 01 f4 03 84 05 14 06 a4 08 34 2e e0 2e e0 2e e0 2e e0 2e e0 2e e0 13 24 13 24 13 24 13 24 13 24 13 24 00 0a 00 0a 00 0a 00 0a 00 0a 00 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 a2 ff ff 00 3c 00 00 00 00 00 00 00 01 0a 5a 07 3a 14 1e 12 c0 00 00 1f 40 1f 40 00 64 03 e8 00 00 00 00 9c 40 00 00 4e 20 00 00 03 20 00 00 00 23 00 03 01 b8 00 00 00 37 00 03 a2 0e 00 00 16 d0 00 00 00 8e 00 c4 00 0b 14 a0 00 00 04 7e 00 a2 00 d8 00 00 00 00 00 00 00 00
2024-12-11 00:01:32.236 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0125 - 0223 | 0x007D - 0x00DF #099 succeeded, response: [40, 4900, 15, 150, 0, 0, 5500, 0, 0, 5100, 95, 5400, 100, 1, 500, 0, 1, 2, 12000, 11, 1, 0, 1, 100, 500, 900, 1300, 1700, 2100, 12000, 12000, 12000, 12000, 12000, 12000, 4900, 4900, 4900, 4900, 4900, 4900, 10, 10, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 162, 65535, 60, 0, 0, 0, 1, 2650, 1850, 5150, 4800, 0, 8000, 8000, 100, 1000, 0, 0, 40000, 0, 20000, 0, 800, 0, 35, 3, 440, 0, 55, 3, 41486, 0, 5840, 0, 142, 196, 11, 5280, 0, 1150, 162, 216, 0, 0, 0, 0]
2024-12-11 00:01:32.236 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0340 - 0340 | 0x0154 - 0x0154 #001 ...
2024-12-11 00:01:32.237 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 4d be 00 00 00 06 01 03 01 54 00 01
2024-12-11 00:01:37.301 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 4d be 00 00 00 05 01 03 02 2e e0
2024-12-11 00:01:37.302 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0340 - 0340 | 0x0154 - 0x0154 #001 succeeded, response: [12000]
2024-12-11 00:01:37.302 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0500 - 0558 | 0x01F4 - 0x022E #059 ...
2024-12-11 00:01:37.302 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 37 1f 00 00 00 06 01 03 01 f4 00 3b
2024-12-11 00:01:37.685 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 37 1f 00 00 00 79 01 03 76 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0f 9f 00 00 0e b9 00 00 00 00 00 00 2d 24 00 00 03 3d 00 00 00 00 40 ac 00 00 00 00 00 00 00 00 00 00 00 00 19 5b 00 00 00 00 00 00 00 00 00 00 04 e2 05 46 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 01 0a 00 00 01 00 05 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:01:37.686 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0500 - 0558 | 0x01F4 - 0x022E #059 succeeded, response: [2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3999, 0, 3769, 0, 0, 0, 11556, 0, 829, 0, 0, 16556, 0, 0, 0, 0, 0, 0, 6491, 0, 0, 0, 0, 0, 1250, 1350, 0, 0, 1, 0, 0, 0, 0, 1, 2560, 1, 5, 0, 0, 0, 0, 0, 0]
2024-12-11 00:01:37.687 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:01:37.687 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 27 3f 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:01:38.200 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 27 3f 00 00 00 f9 01 03 f6 04 7e 14 a5 00 0b 00 00 ff ef ff df 01 2c 00 00 00 00 00 00 00 00 00 00 09 1c 09 1d 09 18 00 00 00 00 00 00 02 2f 00 21 00 24 02 74 00 00 13 83 00 ed 00 32 00 2e 01 09 00 7f 00 84 02 31 01 0e 00 f5 04 34 00 00 00 00 02 31 01 0e 00 f5 04 34 00 00 09 22 09 20 09 1a ff ec ff ec ff ec ff e4 ff e5 ff e5 ff ae ff ae 13 83 00 00 02 13 00 00 00 00 02 22 09 21 09 21 09 19 00 00 00 00 00 00 02 15 00 f3 00 da 03 e2 03 e2 13 83 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 22 00 00 00 5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:01:38.200 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5285, 11, 0, 65519, 65503, 300, 0, 0, 0, 0, 0, 2332, 2333, 2328, 0, 0, 0, 559, 33, 36, 628, 0, 4995, 237, 50, 46, 265, 127, 132, 561, 270, 245, 1076, 0, 0, 561, 270, 245, 1076, 0, 2338, 2336, 2330, 65516, 65516, 65516, 65508, 65509, 65509, 65454, 65454, 4995, 0, 531, 0, 0, 546, 2337, 2337, 2329, 0, 0, 0, 533, 243, 218, 994, 994, 4995, 0, 0, 0, 0, 0, 5, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 0, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:01:38.201 DEBUG (MainThread) [custom_components.solarman.parser] Value: 65535 of [22] is out of range: {'min': 257, 'max': 2051}
2024-12-11 00:01:38.201 DEBUG (MainThread) [custom_components.solarman.parser] Value: 65535 of [22] is out of range: {'min': 257, 'max': 2051}
2024-12-11 00:01:38.201 DEBUG (MainThread) [custom_components.solarman.parser] Value: 65535 of [61] is out of range: {'min': 0, 'max': 1000}
2024-12-11 00:01:38.206 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 202 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:01:38.207 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 6.892 seconds (success: True)
2024-12-11 00:01:38.207 DEBUG (MainThread) [custom_components.solarman] async_setup: async_migrate_entries
2024-12-11 00:01:38.229 DEBUG (MainThread) [custom_components.solarman] async_setup: hass.config_entries.async_forward_entry_setups: [<Platform.SENSOR: 'sensor'>, <Platform.BINARY_SENSOR: 'binary_sensor'>, <Platform.SWITCH: 'switch'>, <Platform.NUMBER: 'number'>, <Platform.SELECT: 'select'>, <Platform.DATETIME: 'datetime'>, <Platform.TIME: 'time'>, <Platform.BUTTON: 'button'>]
2024-12-11 00:01:38.230 DEBUG (MainThread) [custom_components.solarman.sensor] async_setup_entry: {'additional_options': {'battery_nominal_voltage': 51, 'mppt': 2}, 'host': '10.38.107.18'}
2024-12-11 00:01:38.231 DEBUG (MainThread) [custom_components.solarman.sensor] async_setup_entry: async_add_entities
2024-12-11 00:01:38.417 DEBUG (MainThread) [custom_components.solarman.binary_sensor] async_setup_entry: {'additional_options': {'battery_nominal_voltage': 51, 'mppt': 2}, 'host': '10.38.107.18'}
2024-12-11 00:01:38.418 DEBUG (MainThread) [custom_components.solarman.binary_sensor] async_setup_entry: async_add_entities
2024-12-11 00:01:38.439 DEBUG (MainThread) [custom_components.solarman.switch] async_setup_entry: {'additional_options': {'battery_nominal_voltage': 51, 'mppt': 2}, 'host': '10.38.107.18'}
2024-12-11 00:01:38.439 DEBUG (MainThread) [custom_components.solarman.switch] async_setup_entry: async_add_entities
2024-12-11 00:01:38.449 DEBUG (MainThread) [custom_components.solarman.number] async_setup_entry: {'additional_options': {'battery_nominal_voltage': 51, 'mppt': 2}, 'host': '10.38.107.18'}
2024-12-11 00:01:38.450 DEBUG (MainThread) [custom_components.solarman.number] async_setup_entry: async_add_entities
2024-12-11 00:01:38.525 DEBUG (MainThread) [custom_components.solarman.select] async_setup_entry: {'additional_options': {'battery_nominal_voltage': 51, 'mppt': 2}, 'host': '10.38.107.18'}
2024-12-11 00:01:38.525 DEBUG (MainThread) [custom_components.solarman.select] async_setup_entry: async_add_entities
2024-12-11 00:01:38.544 DEBUG (MainThread) [custom_components.solarman.datetime] async_setup_entry: {'additional_options': {'battery_nominal_voltage': 51, 'mppt': 2}, 'host': '10.38.107.18'}
2024-12-11 00:01:38.545 DEBUG (MainThread) [custom_components.solarman.datetime] async_setup_entry: async_add_entities
2024-12-11 00:01:38.547 DEBUG (MainThread) [custom_components.solarman.time] async_setup_entry: {'additional_options': {'battery_nominal_voltage': 51, 'mppt': 2}, 'host': '10.38.107.18'}
2024-12-11 00:01:38.548 DEBUG (MainThread) [custom_components.solarman.time] async_setup_entry: async_add_entities
2024-12-11 00:01:38.558 DEBUG (MainThread) [custom_components.solarman.button] async_setup_entry: {'additional_options': {'battery_nominal_voltage': 51, 'mppt': 2}, 'host': '10.38.107.18'}
2024-12-11 00:01:38.559 DEBUG (MainThread) [custom_components.solarman.button] async_setup_entry: async_add_entities
2024-12-11 00:01:38.560 DEBUG (MainThread) [custom_components.solarman] async_setup: config_entry.add_update_listener(async_update_listener)
2024-12-11 00:01:42.795 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^5
2024-12-11 00:01:42.795 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:01:42.796 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 06 ad 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:01:43.301 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 06 ad 00 00 00 f9 01 03 f6 04 7e 14 a5 00 0b 00 00 ff ef ff df 01 2c 00 00 00 00 00 00 00 00 00 00 09 1b 09 1e 09 18 00 00 00 00 00 00 02 32 00 21 00 23 02 76 00 00 13 83 00 ed 00 32 00 2e 01 08 00 80 00 86 02 2f 01 15 00 f7 04 3b 00 00 00 00 02 2f 01 15 00 f7 04 3b 00 00 09 22 09 20 09 19 ff ec ff ec ff ec ff e4 ff e5 ff e5 ff ae ff ae 13 83 00 00 02 16 00 00 00 00 02 24 09 24 09 14 09 1b 00 00 00 00 00 00 02 13 00 fa 00 dc 03 e9 03 e9 13 83 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 22 00 00 00 5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:01:43.302 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5285, 11, 0, 65519, 65503, 300, 0, 0, 0, 0, 0, 2331, 2334, 2328, 0, 0, 0, 562, 33, 35, 630, 0, 4995, 237, 50, 46, 264, 128, 134, 559, 277, 247, 1083, 0, 0, 559, 277, 247, 1083, 0, 2338, 2336, 2329, 65516, 65516, 65516, 65508, 65509, 65509, 65454, 65454, 4995, 0, 534, 0, 0, 548, 2340, 2324, 2331, 0, 0, 0, 531, 250, 220, 1001, 1001, 4995, 0, 0, 0, 0, 0, 5, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 0, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:01:43.308 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:01:43.309 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.516 seconds (success: True)
2024-12-11 00:01:47.795 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^10
2024-12-11 00:01:47.795 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:01:47.796 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 64 14 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:01:48.257 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 64 14 00 00 00 f9 01 03 f6 04 7e 14 a5 00 0b 00 00 ff f0 ff e0 01 2c 00 00 00 00 00 00 00 00 00 00 09 1c 09 1e 09 18 00 00 00 00 00 00 02 29 00 21 00 24 02 6e 00 00 13 7f 00 e9 00 32 00 2e 01 05 00 80 00 82 02 26 01 17 00 e9 04 26 00 00 00 00 02 26 01 17 00 e9 04 26 00 00 09 23 09 1f 09 18 ff ec ff ec ff ec ff e4 ff e5 ff e5 ff ae ff ae 13 7f 00 00 02 0d 00 00 00 00 02 1c 09 26 09 28 09 15 00 00 00 00 00 00 02 0a 00 fc 00 ce 03 d4 03 d4 13 7f 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 22 00 00 00 5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:01:48.258 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5285, 11, 0, 65520, 65504, 300, 0, 0, 0, 0, 0, 2332, 2334, 2328, 0, 0, 0, 553, 33, 36, 622, 0, 4991, 233, 50, 46, 261, 128, 130, 550, 279, 233, 1062, 0, 0, 550, 279, 233, 1062, 0, 2339, 2335, 2328, 65516, 65516, 65516, 65508, 65509, 65509, 65454, 65454, 4991, 0, 525, 0, 0, 540, 2342, 2344, 2325, 0, 0, 0, 522, 252, 206, 980, 980, 4991, 0, 0, 0, 0, 0, 5, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 0, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:01:48.261 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:01:48.261 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.468 seconds (success: True)
2024-12-11 00:01:52.796 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^15
2024-12-11 00:01:52.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:01:52.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 46 37 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:01:53.314 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 46 37 00 00 00 f9 01 03 f6 04 7e 14 a4 00 0b 00 00 ff f0 ff e0 01 2c 00 00 00 00 00 00 00 00 00 00 09 1b 09 1d 09 18 00 00 00 00 00 00 02 2e 00 21 00 24 02 73 00 00 13 7f 00 eb 00 32 00 2e 01 07 00 82 00 84 02 27 01 17 00 f9 04 37 00 00 00 00 02 27 01 17 00 f9 04 37 00 00 09 22 09 1f 09 19 ff ec ff ec ff ec ff e4 ff e5 ff e5 ff ae ff ae 13 7f 00 00 02 12 00 00 00 00 02 21 09 1f 09 14 09 15 00 00 00 00 00 00 02 0b 00 fc 00 de 03 e5 03 e5 13 7f 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 22 00 00 00 5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:01:53.315 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5284, 11, 0, 65520, 65504, 300, 0, 0, 0, 0, 0, 2331, 2333, 2328, 0, 0, 0, 558, 33, 36, 627, 0, 4991, 235, 50, 46, 263, 130, 132, 551, 279, 249, 1079, 0, 0, 551, 279, 249, 1079, 0, 2338, 2335, 2329, 65516, 65516, 65516, 65508, 65509, 65509, 65454, 65454, 4991, 0, 530, 0, 0, 545, 2335, 2324, 2325, 0, 0, 0, 523, 252, 222, 997, 997, 4991, 0, 0, 0, 0, 0, 5, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 0, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:01:53.317 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:01:53.317 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.525 seconds (success: True)
2024-12-11 00:01:56.357 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling call request.
2024-12-11 00:01:56.357 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Call 10 ~ 130 | 0x0082: 1 ...
2024-12-11 00:01:56.357 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 20 f0 00 00 00 09 01 10 00 82 00 01 02 00 01
2024-12-11 00:01:56.606 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 20 f0 00 00 00 03 01 10 00
2024-12-11 00:01:56.607 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Call 10 ~ 130 | 0x0082: 1 succeeded, response: 1
2024-12-11 00:01:57.795 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^20
2024-12-11 00:01:57.795 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:01:57.796 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: e8 8a 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:01:58.234 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: e8 8a 00 00 00 f9 01 03 f6 04 7e 14 a4 00 0b 00 00 ff f0 ff e0 01 2c 00 00 00 00 00 00 00 00 00 00 09 1e 09 1e 09 19 00 00 00 00 00 00 02 32 00 21 00 24 02 77 00 00 13 83 00 eb 00 32 00 2e 01 07 00 82 00 7f 02 36 01 2c 00 e3 04 45 00 00 00 00 02 36 01 2c 00 e3 04 45 00 00 09 21 09 1f 09 18 ff ec ff ec ff ec ff e4 ff e5 ff e5 ff ae ff ae 13 83 00 00 02 16 00 00 00 00 02 25 09 23 09 28 09 1b 00 00 00 00 00 00 02 1a 01 11 00 c8 03 f3 03 f3 13 83 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 22 00 00 00 5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:01:58.234 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5284, 11, 0, 65520, 65504, 300, 0, 0, 0, 0, 0, 2334, 2334, 2329, 0, 0, 0, 562, 33, 36, 631, 0, 4995, 235, 50, 46, 263, 130, 127, 566, 300, 227, 1093, 0, 0, 566, 300, 227, 1093, 0, 2337, 2335, 2328, 65516, 65516, 65516, 65508, 65509, 65509, 65454, 65454, 4995, 0, 534, 0, 0, 549, 2339, 2344, 2331, 0, 0, 0, 538, 273, 200, 1011, 1011, 4995, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 0, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:01:58.237 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:01:58.237 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.445 seconds (success: True)
2024-12-11 00:02:02.794 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^25
2024-12-11 00:02:02.794 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:02:02.795 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: eb 2e 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:02:03.242 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: eb 2e 00 00 00 f9 01 03 f6 04 7e 14 af 00 0b 00 00 fd f8 fc 29 01 2c 00 00 00 00 00 00 00 00 00 00 09 19 09 1c 09 15 00 00 00 00 00 00 02 db 00 d5 00 d8 04 88 00 00 13 83 01 36 00 66 00 67 01 4f 00 c1 00 c6 02 c6 01 bd 01 91 06 14 00 00 00 00 02 c6 01 bd 01 91 06 14 00 00 09 1f 09 1c 09 16 ff 88 ff 88 ff 88 ff 31 ff 31 ff 33 fd 95 fd 95 13 83 00 00 02 0c 00 00 00 0b 02 1d 09 21 09 26 09 19 00 00 00 00 00 00 01 f7 00 ee 00 c4 03 a9 03 a9 13 83 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 46 00 00 00 5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:03.242 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5295, 11, 0, 65016, 64553, 300, 0, 0, 0, 0, 0, 2329, 2332, 2325, 0, 0, 0, 731, 213, 216, 1160, 0, 4995, 310, 102, 103, 335, 193, 198, 710, 445, 401, 1556, 0, 0, 710, 445, 401, 1556, 0, 2335, 2332, 2326, 65416, 65416, 65416, 65329, 65329, 65331, 64917, 64917, 4995, 0, 524, 0, 11, 541, 2337, 2342, 2329, 0, 0, 0, 503, 238, 196, 937, 937, 4995, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326, 0, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:03.245 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:02:03.245 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.453 seconds (success: True)
2024-12-11 00:02:07.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 2 query requests. ^30
2024-12-11 00:02:07.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0500 - 0558 | 0x01F4 - 0x022E #059 ...
2024-12-11 00:02:07.798 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 8a 15 00 00 00 06 01 03 01 f4 00 3b
2024-12-11 00:02:08.154 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 8a 15 00 00 00 79 01 03 76 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0f 9f 00 00 0e b9 00 00 00 00 00 00 2d 24 00 00 03 3d 00 00 00 00 40 ac 00 00 00 00 00 00 00 00 00 00 00 00 19 5b 00 00 00 00 00 00 00 00 00 00 04 e2 05 47 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 01 0a 00 00 01 00 05 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:08.155 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0500 - 0558 | 0x01F4 - 0x022E #059 succeeded, response: [2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3999, 0, 3769, 0, 0, 0, 11556, 0, 829, 0, 0, 16556, 0, 0, 0, 0, 0, 0, 6491, 0, 0, 0, 0, 0, 1250, 1351, 0, 0, 1, 0, 0, 0, 0, 1, 2560, 1, 5, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:08.155 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:02:08.155 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 4d 7b 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:02:08.473 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling call request.
2024-12-11 00:02:08.659 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 4d 7b 00 00 00 f9 01 03 f6 04 7e 14 d0 00 0b 00 00 f8 fb f2 d3 01 2c 00 00 00 00 00 00 00 00 00 00 09 19 09 16 09 12 00 00 00 00 00 00 04 d8 02 c7 02 cc 0a 6b 00 00 13 83 02 05 01 2a 01 2b 02 19 01 98 01 91 04 fc 03 fd 03 b9 0c b2 00 00 00 00 04 fc 03 fd 03 b9 0c b2 00 00 09 1e 09 19 09 15 fe de fe de fe e8 fd 3d fd 40 fd 40 f7 bd f7 bd 13 83 00 00 02 15 00 00 00 0c 02 28 09 21 09 23 09 15 00 00 00 00 00 00 02 39 01 3d 00 f9 04 6f 04 6f 13 83 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 51 00 00 00 5a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:08.660 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5328, 11, 0, 63739, 62163, 300, 0, 0, 0, 0, 0, 2329, 2326, 2322, 0, 0, 0, 1240, 711, 716, 2667, 0, 4995, 517, 298, 299, 537, 408, 401, 1276, 1021, 953, 3250, 0, 0, 1276, 1021, 953, 3250, 0, 2334, 2329, 2325, 65246, 65246, 65256, 64829, 64832, 64832, 63421, 63421, 4995, 0, 533, 0, 12, 552, 2337, 2339, 2325, 0, 0, 0, 569, 317, 249, 1135, 1135, 4995, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 337, 0, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:08.663 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 90 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:02:08.663 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.869 seconds (success: True)
2024-12-11 00:02:08.711 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Call 10 ~ 130 | 0x0082: 0 ...
2024-12-11 00:02:08.711 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 01 1a 00 00 00 09 01 10 00 82 00 01 02 00 00
2024-12-11 00:02:08.922 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 01 1a 00 00 00 03 01 10 00
2024-12-11 00:02:08.922 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Call 10 ~ 130 | 0x0082: 0 succeeded, response: 1
2024-12-11 00:02:13.795 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^35
2024-12-11 00:02:13.795 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:02:13.796 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: e5 9b 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:02:14.273 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: e5 9b 00 00 00 f9 01 03 f6 04 7e 14 b3 00 0b 00 00 ff a5 ff 54 01 2c 00 00 00 00 00 00 00 00 00 00 09 1c 09 1e 09 19 00 00 00 00 00 00 02 42 00 35 00 36 02 ad 00 00 13 83 00 f2 00 34 00 32 01 0d 00 90 00 8a 02 4d 01 2f 01 13 04 8f 00 00 00 00 02 4d 01 2f 01 13 04 8f 00 00 09 21 09 1f 09 19 ff ec ff ec ff ec ff d2 ff d2 ff d3 ff 77 ff 77 13 83 00 00 02 14 00 00 00 00 02 24 09 26 09 28 09 1c 00 00 00 00 00 00 02 1f 01 01 00 e6 04 06 04 06 13 83 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 2b 00 00 00 5a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:14.274 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5299, 11, 0, 65445, 65364, 300, 0, 0, 0, 0, 0, 2332, 2334, 2329, 0, 0, 0, 578, 53, 54, 685, 0, 4995, 242, 52, 50, 269, 144, 138, 589, 303, 275, 1167, 0, 0, 589, 303, 275, 1167, 0, 2337, 2335, 2329, 65516, 65516, 65516, 65490, 65490, 65491, 65399, 65399, 4995, 0, 532, 0, 0, 548, 2342, 2344, 2332, 0, 0, 0, 543, 257, 230, 1030, 1030, 4995, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299, 0, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:14.277 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:02:14.278 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.486 seconds (success: True)
2024-12-11 00:02:18.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^40
2024-12-11 00:02:18.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:02:18.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 83 a6 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:02:19.240 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 83 a6 00 00 00 f9 01 03 f6 04 7e 14 ab 00 0b 00 00 00 7a 00 e8 01 2c 00 00 00 00 00 00 00 00 00 00 09 1e 09 1d 09 1a 00 00 00 00 00 00 01 e7 00 00 00 04 01 eb 00 00 13 83 00 ce 00 2f 00 2c 00 ec 00 82 00 7c 02 03 01 1d 00 d2 03 f2 00 00 00 00 02 03 01 1d 00 d2 03 f2 00 00 09 22 09 1d 09 19 00 00 ff f6 ff f6 00 0c 00 00 00 00 00 0c 00 0c 13 83 00 00 01 f3 00 00 00 00 01 f7 09 1b 09 12 09 1b 00 00 00 00 00 00 02 0f 01 1d 00 d2 03 fe 03 fe 13 83 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 21 00 00 00 59 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:19.241 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5291, 11, 0, 122, 232, 300, 0, 0, 0, 0, 0, 2334, 2333, 2330, 0, 0, 0, 487, 0, 4, 491, 0, 4995, 206, 47, 44, 236, 130, 124, 515, 285, 210, 1010, 0, 0, 515, 285, 210, 1010, 0, 2338, 2333, 2329, 0, 65526, 65526, 12, 0, 0, 12, 12, 4995, 0, 499, 0, 0, 503, 2331, 2322, 2331, 0, 0, 0, 527, 285, 210, 1022, 1022, 4995, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:19.245 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:02:19.246 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.453 seconds (success: True)
2024-12-11 00:02:23.796 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^45
2024-12-11 00:02:23.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:02:23.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: f7 c1 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:02:24.237 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: f7 c1 00 00 00 f9 01 03 f6 04 7e 14 ab 00 0b 00 00 ff fc ff f8 01 2c 00 00 00 00 00 00 00 00 00 00 09 1b 09 1e 09 16 00 00 00 00 00 00 02 0c 00 1c 00 1e 02 46 00 00 13 83 00 de 00 31 00 2e 00 fa 00 89 00 8c 02 0b 01 32 01 0b 04 48 00 00 00 00 02 0b 01 32 01 0b 04 48 00 00 09 24 09 21 09 1a ff ec ff ec ff ec ff ea ff ea ff eb ff bf ff bf 13 83 00 00 01 f6 00 00 00 00 02 05 09 26 09 21 09 18 00 00 00 00 00 00 01 f5 01 1c 00 f6 04 07 04 07 13 83 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 22 00 00 00 5a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:24.238 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5291, 11, 0, 65532, 65528, 300, 0, 0, 0, 0, 0, 2331, 2334, 2326, 0, 0, 0, 524, 28, 30, 582, 0, 4995, 222, 49, 46, 250, 137, 140, 523, 306, 267, 1096, 0, 0, 523, 306, 267, 1096, 0, 2340, 2337, 2330, 65516, 65516, 65516, 65514, 65514, 65515, 65471, 65471, 4995, 0, 502, 0, 0, 517, 2342, 2337, 2328, 0, 0, 0, 501, 284, 246, 1031, 1031, 4995, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 0, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:24.242 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:02:24.244 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.450 seconds (success: True)
2024-12-11 00:02:28.794 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^50
2024-12-11 00:02:28.794 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:02:28.794 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 9b 0e 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:02:29.295 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 9b 0e 00 00 00 f9 01 03 f6 04 7e 14 ab 00 0b 00 00 ff f3 ff e6 01 2c 00 00 00 00 00 00 00 00 00 00 09 1b 09 1b 09 15 00 00 00 00 00 00 02 07 00 21 00 24 02 4c 00 00 13 83 00 dc 00 32 00 2e 00 f9 00 87 00 97 02 0a 01 28 01 21 04 53 00 00 00 00 02 0a 01 28 01 21 04 53 00 00 09 23 09 20 09 18 ff ec ff ec ff ec ff e4 ff e5 ff e5 ff ae ff ae 13 83 00 00 01 eb 00 00 00 00 01 fa 09 1d 09 21 09 11 00 00 00 00 00 00 01 ee 01 0d 01 06 04 01 04 01 13 83 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 22 00 00 00 5a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:29.296 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5291, 11, 0, 65523, 65510, 300, 0, 0, 0, 0, 0, 2331, 2331, 2325, 0, 0, 0, 519, 33, 36, 588, 0, 4995, 220, 50, 46, 249, 135, 151, 522, 296, 289, 1107, 0, 0, 522, 296, 289, 1107, 0, 2339, 2336, 2328, 65516, 65516, 65516, 65508, 65509, 65509, 65454, 65454, 4995, 0, 491, 0, 0, 506, 2333, 2337, 2321, 0, 0, 0, 494, 269, 262, 1025, 1025, 4995, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 0, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:29.299 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:02:29.299 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.507 seconds (success: True)
2024-12-11 00:02:33.798 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^55
2024-12-11 00:02:33.798 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:02:33.799 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 44 d3 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:02:34.260 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 44 d3 00 00 00 f9 01 03 f6 04 7e 14 aa 00 0b 00 00 ff ef ff df 01 2c 00 00 00 00 00 00 00 00 00 00 09 1c 09 1f 09 16 00 00 00 00 00 00 02 0f 00 21 00 24 02 54 00 00 13 83 00 de 00 32 00 2e 00 fb 00 89 00 9f 02 17 01 3b 01 34 04 86 00 00 00 00 02 17 01 3b 01 34 04 86 00 00 09 23 09 1e 09 18 ff ec ff ec ff ec ff e4 ff e5 ff e5 ff ae ff ae 13 83 00 00 01 f3 00 00 00 00 02 02 09 24 09 20 09 19 00 00 00 00 00 00 01 fb 01 20 01 19 04 34 04 34 13 83 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 22 00 00 00 5b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:34.260 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5290, 11, 0, 65519, 65503, 300, 0, 0, 0, 0, 0, 2332, 2335, 2326, 0, 0, 0, 527, 33, 36, 596, 0, 4995, 222, 50, 46, 251, 137, 159, 535, 315, 308, 1158, 0, 0, 535, 315, 308, 1158, 0, 2339, 2334, 2328, 65516, 65516, 65516, 65508, 65509, 65509, 65454, 65454, 4995, 0, 499, 0, 0, 514, 2340, 2336, 2329, 0, 0, 0, 507, 288, 281, 1076, 1076, 4995, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 0, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:34.262 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:02:34.263 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.469 seconds (success: True)
2024-12-11 00:02:38.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 4 query requests. ^60
2024-12-11 00:02:38.798 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0062 - 0064 | 0x003E - 0x0040 #003 ...
2024-12-11 00:02:38.798 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 2f f5 00 00 00 06 01 03 00 3e 00 03
2024-12-11 00:02:39.048 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 2f f5 00 00 00 09 01 03 06 18 0c 0b 00 04 10
2024-12-11 00:02:39.049 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0062 - 0064 | 0x003E - 0x0040 #003 succeeded, response: [6156, 2816, 1040]
2024-12-11 00:02:39.049 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0210 - 0223 | 0x00D2 - 0x00DF #014 ...
2024-12-11 00:02:39.050 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: b4 43 00 00 00 06 01 03 00 d2 00 0e
2024-12-11 00:02:39.331 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: b4 43 00 00 00 1f 01 03 1c 16 d0 00 00 00 8e 00 c5 00 0b 14 a0 00 00 04 7e 00 a2 00 d9 00 00 00 00 00 00 00 00
2024-12-11 00:02:39.332 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0210 - 0223 | 0x00D2 - 0x00DF #014 succeeded, response: [5840, 0, 142, 197, 11, 5280, 0, 1150, 162, 217, 0, 0, 0, 0]
2024-12-11 00:02:39.332 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0500 - 0558 | 0x01F4 - 0x022E #059 ...
2024-12-11 00:02:39.332 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 5d 65 00 00 00 06 01 03 01 f4 00 3b
2024-12-11 00:02:39.704 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 5d 65 00 00 00 79 01 03 76 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0f 9f 00 00 0e b9 00 00 00 00 00 00 2d 24 00 00 03 3d 00 00 00 00 40 ac 00 00 00 00 00 00 00 00 00 00 00 00 19 5b 00 00 00 00 00 00 00 00 00 00 04 e2 05 46 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 01 0a 00 00 01 00 05 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:39.705 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0500 - 0558 | 0x01F4 - 0x022E #059 succeeded, response: [2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3999, 0, 3769, 0, 0, 0, 11556, 0, 829, 0, 0, 16556, 0, 0, 0, 0, 0, 0, 6491, 0, 0, 0, 0, 0, 1250, 1350, 0, 0, 1, 0, 0, 0, 0, 1, 2560, 1, 5, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:39.705 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:02:39.706 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 01 95 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:02:40.209 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 01 95 00 00 00 f9 01 03 f6 04 7e 14 aa 00 0b 00 00 ff ec ff da 01 2c 00 00 00 00 00 00 00 00 00 00 09 1f 09 1f 09 19 00 00 00 00 00 00 02 10 00 20 00 23 02 53 00 00 13 83 00 df 00 32 00 2e 00 fb 00 84 00 9a 02 19 01 31 01 2e 04 78 00 00 00 00 02 19 01 31 01 2e 04 78 00 00 09 24 09 1f 09 1a ff ec ff ec ff ec ff e5 ff e6 ff e6 ff b1 ff b1 13 83 00 00 01 f5 00 00 00 00 02 04 09 1f 09 14 09 14 00 00 00 00 00 00 01 fe 01 17 01 14 04 29 04 29 13 83 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 22 00 00 00 5a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:40.210 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5290, 11, 0, 65516, 65498, 300, 0, 0, 0, 0, 0, 2335, 2335, 2329, 0, 0, 0, 528, 32, 35, 595, 0, 4995, 223, 50, 46, 251, 132, 154, 537, 305, 302, 1144, 0, 0, 537, 305, 302, 1144, 0, 2340, 2335, 2330, 65516, 65516, 65516, 65509, 65510, 65510, 65457, 65457, 4995, 0, 501, 0, 0, 516, 2335, 2324, 2324, 0, 0, 0, 510, 279, 276, 1065, 1065, 4995, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 0, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:40.216 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 104 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:02:40.216 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 1.424 seconds (success: True)
2024-12-11 00:02:44.796 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^65
2024-12-11 00:02:44.796 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:02:44.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: b6 31 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:02:46.065 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: b6 31 00 00 00 f9 01 03 f6 04 7e 14 a9 00 0b 00 00 ff ed ff dc 01 2c 00 00 00 00 00 00 00 00 00 00 09 1c 09 20 09 19 00 00 00 00 00 00 02 13 00 21 00 23 02 57 00 00 13 83 00 e1 00 32 00 2e 00 fd 00 82 00 7d 02 12 01 25 00 e8 04 1f 00 00 00 00 02 12 01 25 00 e8 04 1f 00 00 09 24 09 21 09 1b ff ec ff ec ff ec ff e4 ff e5 ff e6 ff af ff af 13 83 00 00 01 f7 00 00 00 00 02 06 09 26 09 23 09 1b 00 00 00 00 00 00 01 f6 01 0a 00 ce 03 ce 03 ce 13 83 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 21 00 00 00 5a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:46.066 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5289, 11, 0, 65517, 65500, 300, 0, 0, 0, 0, 0, 2332, 2336, 2329, 0, 0, 0, 531, 33, 35, 599, 0, 4995, 225, 50, 46, 253, 130, 125, 530, 293, 232, 1055, 0, 0, 530, 293, 232, 1055, 0, 2340, 2337, 2331, 65516, 65516, 65516, 65508, 65509, 65510, 65455, 65455, 4995, 0, 503, 0, 0, 518, 2342, 2339, 2331, 0, 0, 0, 502, 266, 206, 974, 974, 4995, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:46.069 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:02:46.070 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 1.277 seconds (success: True)
2024-12-11 00:02:50.796 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^70
2024-12-11 00:02:50.796 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:02:50.797 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: 1c e0 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:02:52.589 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: 1c e0 00 00 00 f9 01 03 f6 04 7e 14 a9 00 0b 00 00 ff f0 ff e0 01 2c 00 00 00 00 00 00 00 00 00 00 09 1e 09 1e 09 19 00 00 00 00 00 00 02 1a 00 22 00 24 02 60 00 00 13 7f 00 e0 00 32 00 2e 00 fc 00 81 00 74 02 38 01 19 00 c1 04 12 00 00 00 00 02 38 01 19 00 c1 04 12 00 00 09 24 09 20 09 1b ff ec ff ec ff ec ff e4 ff e4 ff e5 ff ad ff ad 13 7f 00 00 01 fe 00 00 00 00 02 0d 09 24 09 21 09 1c 00 00 00 00 00 00 02 1c 00 fd 00 a6 03 bf 03 bf 13 7f 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 22 00 00 00 5b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:52.590 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5289, 11, 0, 65520, 65504, 300, 0, 0, 0, 0, 0, 2334, 2334, 2329, 0, 0, 0, 538, 34, 36, 608, 0, 4991, 224, 50, 46, 252, 129, 116, 568, 281, 193, 1042, 0, 0, 568, 281, 193, 1042, 0, 2340, 2336, 2331, 65516, 65516, 65516, 65508, 65508, 65509, 65453, 65453, 4991, 0, 510, 0, 0, 525, 2340, 2337, 2332, 0, 0, 0, 540, 253, 166, 959, 959, 4991, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 0, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:52.593 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:02:52.593 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 1.799 seconds (success: True)
2024-12-11 00:02:57.795 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Scheduling 1 query request. ^75
2024-12-11 00:02:57.795 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 ...
2024-12-11 00:02:57.795 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] SENT: d3 ee 00 00 00 06 01 03 02 4a 00 7b
2024-12-11 00:02:58.312 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] RECD: d3 ee 00 00 00 f9 01 03 f6 04 7e 14 a8 00 0b 00 00 ff ef ff df 01 2c 00 00 00 00 00 00 00 00 00 00 09 1d 09 1f 09 19 00 00 00 00 00 00 02 19 00 22 00 24 02 5f 00 00 13 83 00 e3 00 32 00 2e 00 ff 00 81 00 7d 02 16 01 1d 00 db 04 0e 00 00 00 00 02 16 01 1d 00 db 04 0e 00 00 09 25 09 22 09 1c ff ec ff ec ff ec ff e4 ff e4 ff e5 ff ad ff ad 13 83 00 00 01 fd 00 00 00 00 02 0c 09 26 09 23 09 1d 00 00 00 00 00 00 01 fa 01 01 00 c0 03 bb 03 bb 13 83 00 00 00 00 00 00 00 00 00 00 00 04 00 01 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 22 00 00 00 5b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2024-12-11 00:02:58.312 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Querying 03 ~ 0586 - 0708 | 0x024A - 0x02C4 #123 succeeded, response: [1150, 5288, 11, 0, 65519, 65503, 300, 0, 0, 0, 0, 0, 2333, 2335, 2329, 0, 0, 0, 537, 34, 36, 607, 0, 4995, 227, 50, 46, 255, 129, 125, 534, 285, 219, 1038, 0, 0, 534, 285, 219, 1038, 0, 2341, 2338, 2332, 65516, 65516, 65516, 65508, 65508, 65509, 65453, 65453, 4995, 0, 509, 0, 0, 524, 2342, 2339, 2333, 0, 0, 0, 506, 257, 192, 955, 955, 4995, 0, 0, 0, 0, 0, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 0, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65535, 65535, 65535, 65535, 65535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-12-11 00:02:58.317 DEBUG (MainThread) [custom_components.solarman.api] [2110645731] Returning 67 new values to the Coordinator. [Previous State: Connected (1)]
2024-12-11 00:02:58.317 DEBUG (MainThread) [custom_components.solarman.coordinator] Finished fetching SUN-12K-SG04-LP3 data in 0.524 seconds (success: True)

@davidrapan
Copy link
Owner

There was a bug!

fix: Set of configurables to 0 did not update state in HA

Thanks for catching that out!

@davidrapan davidrapan self-assigned this Dec 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants