pymodbus
pymodbus copied to clipboard
ValueError: filedescriptor out of range in select()
Versions
- Python: 3.9
- OS: HAOS
- Pymodbus: 2.5.3 and 3.0.0dev3
- Modbus Hardware (if used): SolarEdge SE3000
Pymodbus Specific
- Server: tcp/rtu/ascii - sync/async
- Client: tcp/rtu/ascii - sync/async
Description
I'm using a custom component for Home Assistant and I'm alway having this error after ±25min
Original issue https://github.com/WillCodeForCats/solaredge-modbus-multi/issues/24 Similar issue https://github.com/riptideio/pymodbus/issues/721
Code and Logs
Logger: homeassistant
Source: custom_components/solaredge_modbus/__init__.py:187
Integration: SolarEdge Modbus Multi-Inverter ([documentation](https://github.com/WillCodeForCats/solaredge-modbus-multi), [issues](https://github.com/WillCodeForCats/solaredge-modbus-multi/issues))
First occurred: 12:51:25 (188 occurrences)
Last logged: 15:58:26
Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/config/custom_components/solaredge_modbus/__init__.py", line 156, in async_refresh_modbus_data
update_result = self.read_modbus_data()
File "/config/custom_components/solaredge_modbus/__init__.py", line 197, in read_modbus_data
self.read_modbus_data_inverters()
File "/config/custom_components/solaredge_modbus/__init__.py", line 207, in read_modbus_data_inverters
inverter_data = self.read_holding_registers(
File "/config/custom_components/solaredge_modbus/__init__.py", line 187, in read_holding_registers
return self._client.read_holding_registers(address, count, **kwargs)
File "/usr/local/lib/python3.9/site-packages/pymodbus/client/common.py", line 114, in read_holding_registers
return self.execute(request)
File "/usr/local/lib/python3.9/site-packages/pymodbus/client/sync.py", line 109, in execute
raise ConnectionException("Failed to connect[%s]" % (self.__str__()))
File "/usr/local/lib/python3.9/site-packages/pymodbus/transaction.py", line 174, in execute
response, last_exception = self._transact(
File "/usr/local/lib/python3.9/site-packages/pymodbus/transaction.py", line 294, in _transact
result = self._recv(response_length, full)
File "/usr/local/lib/python3.9/site-packages/pymodbus/transaction.py", line 326, in _recv
read_min = self.client.framer.recvPacket(min_size)
File "/usr/local/lib/python3.9/site-packages/pymodbus/framer/__init__.py", line 49, in recvPacket
return self.client.recv(size)
File "/usr/local/lib/python3.9/site-packages/pymodbus/client/sync.py", line 89, in recv
def recv(self, size):
File "/usr/local/lib/python3.9/site-packages/pymodbus/client/sync.py", line 293, in _recv
while recv_size > 0:
ValueError: filedescriptor out of range in select()
That is solved in #722 and merged into dev, however it have not been released yet.
If you want a fast solution simply copy/paste the change.
I use
{
"domain": "solaredge_modbus",
"name": "SolarEdge Modbus Multi-Inverter",
"documentation": "https://github.com/WillCodeForCats/solaredge-modbus-multi",
"issue_tracker": "https://github.com/WillCodeForCats/solaredge-modbus-multi/issues",
"requirements": ["pymodbus==3.0.0.dev3"],
"dependencies": [],
"codeowners": ["@WillCodeForCats"],
"config_flow": true,
"iot_class": "local_polling",
"version": "1.1.2"
}
as a manifest file
ok, but it is not in dev3 (at least I don't think so), it will be in dev4.
Simply control if sync.py contained the patch I pointed you to.
https://github.com/riptideio/pymodbus/blob/v3.0.0dev3/pymodbus/client/sync.py#L293 I think it is in dev3
Seems so, please try to change sync.py line 295 from:
except ValueError:
to
except:
Seems you are getting another exception that expected.
I was able to change the file with vi, I will report back...
Deze fout is ontstaan door een aangepaste integratie.
Logger: homeassistant
Source: custom_components/solaredge_modbus/__init__.py:187
Integration: SolarEdge Modbus Multi-Inverter (documentation, issues)
First occurred: 17:35:58 (2 occurrences)
Last logged: 17:36:58
Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/usr/local/lib/python3.9/site-packages/pymodbus/client/sync.py", line 295, in _recv
ready = select.select([self.socket], [], [], end - time_)
ValueError: filedescriptor out of range in select()
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/config/custom_components/solaredge_modbus/__init__.py", line 156, in async_refresh_modbus_data
update_result = self.read_modbus_data()
File "/config/custom_components/solaredge_modbus/__init__.py", line 197, in read_modbus_data
self.read_modbus_data_inverters()
File "/config/custom_components/solaredge_modbus/__init__.py", line 207, in read_modbus_data_inverters
inverter_data = self.read_holding_registers(
File "/config/custom_components/solaredge_modbus/__init__.py", line 187, in read_holding_registers
return self._client.read_holding_registers(address, count, **kwargs)
File "/usr/local/lib/python3.9/site-packages/pymodbus/client/common.py", line 114, in read_holding_registers
return self.execute(request)
File "/usr/local/lib/python3.9/site-packages/pymodbus/client/sync.py", line 110, in execute
return self.transaction.execute(request)
File "/usr/local/lib/python3.9/site-packages/pymodbus/transaction.py", line 174, in execute
response, last_exception = self._transact(
File "/usr/local/lib/python3.9/site-packages/pymodbus/transaction.py", line 294, in _transact
result = self._recv(response_length, full)
File "/usr/local/lib/python3.9/site-packages/pymodbus/transaction.py", line 326, in _recv
read_min = self.client.framer.recvPacket(min_size)
File "/usr/local/lib/python3.9/site-packages/pymodbus/framer/__init__.py", line 49, in recvPacket
return self.client.recv(size)
File "/usr/local/lib/python3.9/site-packages/pymodbus/client/sync.py", line 90, in recv
return self._recv(size)
File "/usr/local/lib/python3.9/site-packages/pymodbus/client/sync.py", line 297, in _recv
return self._handle_abrupt_socket_close(
File "/usr/local/lib/python3.9/site-packages/pymodbus/client/sync.py", line 347, in _handle_abrupt_socket_close
raise ConnectionException(msg)
pymodbus.exceptions.ConnectionException: Modbus Error: [Connection] ModbusTcpClient(192.168.79.56:502): Connection unexpectedly closed 0.000024 seconds into read of 8 bytes without response from unit before it closed connection
This is a wanted exception, because it informs the application that a connection was broken.
In other words you need to catch that in your application.
Do you have any thoughts on why this error keeps appearing 25 min after restarting HA? I have restarted the inverter several times, restarted the switch and router. Tried a different network cable. No success

pymodbus debug logs
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 50909)
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.transaction] Running transaction 23
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x17 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x17 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x46 0xcd 0x46 0xcd 0xff 0xff 0xff 0xff 0xff 0xfc 0x9 0x1a 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x10 0x54 0xff 0xff 0xc3 0x6a 0xff 0xfd 0x10 0x76 0xff 0xff 0x15 0x18 0xff 0xfe 0xd9 0x44 0xff 0xfe 0x1 0x22 0x74 0x72 0x0 0x0 0x2f 0x27 0xff 0xfc 0xd 0xbb 0xff 0xff 0x10 0x93 0xff 0xff 0x80 0x0 0x7 0x13 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x17 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x46 0xcd 0x46 0xcd 0xff 0xff 0xff 0xff 0xff 0xfc 0x9 0x1a 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x10 0x54 0xff 0xff 0xc3 0x6a 0xff 0xfd 0x10 0x76 0xff 0xff 0x15 0x18 0xff 0xfe 0xd9 0x44 0xff 0xfe 0x1 0x22 0x74 0x72 0x0 0x0 0x2f 0x27 0xff 0xfc 0xd 0xbb 0xff 0xff 0x10 0x93 0xff 0xff 0x80 0x0 0x7 0x13 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 23
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 23
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 18125, 18125, 65535, 65535, 65532, 2330, 65535, 65535, 65535, 65535, 65535, 65535, 4180, 65535, 50026, 65533, 4214, 65535, 5400, 65534, 55620, 65534, 290, 29810, 0, 12071, 65532, 3515, 65535, 4243, 65535, 32768, 1811, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-04-26 09:06:53 DEBUG (MainThread) [pymodbus.payload] [b'\x01"', b'tr']
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] send: 0x0 0x69 0x0 0x0 0x0 0x6 0x0 0x3 0x7d 0x40 0x0 0x34
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 105
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] recv: 0x0 0x69 0x0 0x0 0x0 0x6b 0x0 0x3 0x68 0x0 0x0 0x1 0xf2 0xf 0xae 0xf 0xb1 0xf 0xb8 0x9 0x13 0x9 0xa 0x9 0x13 0x0 0x0 0x2 0xd0 0x0 0x0 0x2 0xc9 0x0 0x0 0x2 0xe3 0x0 0x0 0x1 0xe1 0x0 0x0 0x1 0xe0 0x0 0x0 0x0 0x0 0x3 0xe8 0x13 0x8b 0x25 0xa2 0x1 0x7c 0xb 0xb8 0x2 0x0 0x0 0x0 0x62 0x67 0x98 0x48 0xff 0xff 0xff 0xff 0x0 0x0 0x1 0xe9 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x52 0x68 0x0 0x9 0xdc 0x42 0x62 0x67 0xb6 0x35 0x0 0x0 0x0 0x5 0x0 0x0 0x0 0x25
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x69 0x0 0x0 0x0 0x6b 0x0 0x3 0x68 0x0 0x0 0x1 0xf2 0xf 0xae 0xf 0xb1 0xf 0xb8 0x9 0x13 0x9 0xa 0x9 0x13 0x0 0x0 0x2 0xd0 0x0 0x0 0x2 0xc9 0x0 0x0 0x2 0xe3 0x0 0x0 0x1 0xe1 0x0 0x0 0x1 0xe0 0x0 0x0 0x0 0x0 0x3 0xe8 0x13 0x8b 0x25 0xa2 0x1 0x7c 0xb 0xb8 0x2 0x0 0x0 0x0 0x62 0x67 0x98 0x48 0xff 0xff 0xff 0xff 0x0 0x0 0x1 0xe9 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x52 0x68 0x0 0x9 0xdc 0x42 0x62 0x67 0xb6 0x35 0x0 0x0 0x0 0x5 0x0 0x0 0x0 0x25
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 105
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [0, 498, 4014, 4017, 4024, 2323, 2314, 2323, 0, 720, 0, 713, 0, 739, 0, 481, 0, 480, 0, 0, 1000, 5003, 9634, 380, 3000, 512, 0, 25191, 38984, 65535, 65535, 0, 489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 21096, 9, 56386, 25191, 46645, 0, 5, 0, 37]
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x01\xf2']
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\xd0']
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\xc9']
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\xe3']
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x01\xe1']
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x01\xe0']
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x00\x00']
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [b'bg', b'\x98H']
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [b'\xff\xff', b'\xff\xff']
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\t', b'Rh']
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x00%']
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] send: 0x0 0x6a 0x0 0x0 0x0 0x6 0x0 0x3 0x7d 0x10 0x0 0x4
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 106
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] recv: 0x0 0x6a 0x0 0x0 0x0 0xb 0x0 0x3 0x8 0x17 0x20 0x0 0x36 0x10 0xbc 0x0 0x2e
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x6a 0x0 0x0 0x0 0xb 0x0 0x3 0x8 0x17 0x20 0x0 0x36 0x10 0xbc 0x0 0x2e
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 106
2022-04-26 09:07:06 DEBUG (MainThread) [pymodbus.payload] [5920, 54, 4284, 46]
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] send: 0x0 0x6b 0x0 0x0 0x0 0x6 0x0 0x3 0x7d 0x40 0x0 0x34
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 107
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] recv: 0x0 0x6b 0x0 0x0 0x0 0x6b 0x0 0x3 0x68 0x0 0x0 0x1 0xf8 0xf 0xaf 0xf 0xad 0xf 0xb4 0x9 0x12 0x9 0xb 0x9 0xf 0x0 0x0 0x2 0xd8 0x0 0x0 0x2 0xd4 0x0 0x0 0x2 0xee 0x0 0x0 0x1 0xe8 0x0 0x0 0x1 0xe6 0xff 0xff 0xff 0xff 0x3 0xe8 0x13 0x8b 0x25 0xad 0x1 0x7c 0xb 0xb8 0x2 0x0 0x0 0x0 0x62 0x67 0x98 0x48 0xff 0xff 0xff 0xff 0x0 0x0 0x1 0xde 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x52 0x69 0x0 0x9 0xdc 0x42 0x62 0x67 0xb6 0x52 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x26
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x6b 0x0 0x0 0x0 0x6b 0x0 0x3 0x68 0x0 0x0 0x1 0xf8 0xf 0xaf 0xf 0xad 0xf 0xb4 0x9 0x12 0x9 0xb 0x9 0xf 0x0 0x0 0x2 0xd8 0x0 0x0 0x2 0xd4 0x0 0x0 0x2 0xee 0x0 0x0 0x1 0xe8 0x0 0x0 0x1 0xe6 0xff 0xff 0xff 0xff 0x3 0xe8 0x13 0x8b 0x25 0xad 0x1 0x7c 0xb 0xb8 0x2 0x0 0x0 0x0 0x62 0x67 0x98 0x48 0xff 0xff 0xff 0xff 0x0 0x0 0x1 0xde 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x52 0x69 0x0 0x9 0xdc 0x42 0x62 0x67 0xb6 0x52 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x26
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 107
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [0, 504, 4015, 4013, 4020, 2322, 2315, 2319, 0, 728, 0, 724, 0, 750, 0, 488, 0, 486, 65535, 65535, 1000, 5003, 9645, 380, 3000, 512, 0, 25191, 38984, 65535, 65535, 0, 478, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 21097, 9, 56386, 25191, 46674, 0, 6, 0, 38]
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x01\xf8']
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\xd8']
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\xd4']
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\xee']
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x01\xe8']
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x01\xe6']
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [b'\xff\xff', b'\xff\xff']
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [b'bg', b'\x98H']
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [b'\xff\xff', b'\xff\xff']
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\t', b'Ri']
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x00&']
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] send: 0x0 0x6c 0x0 0x0 0x0 0x6 0x0 0x3 0x7d 0x10 0x0 0x4
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 108
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] recv: 0x0 0x6c 0x0 0x0 0x0 0xb 0x0 0x3 0x8 0x17 0x54 0x0 0x36 0x10 0xdd 0x0 0x2d
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x6c 0x0 0x0 0x0 0xb 0x0 0x3 0x8 0x17 0x54 0x0 0x36 0x10 0xdd 0x0 0x2d
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 108
2022-04-26 09:07:36 DEBUG (MainThread) [pymodbus.payload] [5972, 54, 4317, 45]
2022-04-26 09:07:53 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 36441)
2022-04-26 09:07:53 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-04-26 09:07:53 DEBUG (MainThread) [pymodbus.transaction] Running transaction 24
2022-04-26 09:07:53 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x18 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-04-26 09:07:53 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-04-26 09:07:53 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-04-26 09:07:53 ERROR (MainThread) [custom_components.solaredge_modbus] Error reading inverter at id 1: filedescriptor out of range in select()
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] send: 0x0 0x6d 0x0 0x0 0x0 0x6 0x0 0x3 0x7d 0x40 0x0 0x34
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 109
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] recv: 0x0 0x6d 0x0 0x0 0x0 0x6b 0x0 0x3 0x68 0x0 0x0 0x1 0xfa 0xf 0xa8 0xf 0xaa 0xf 0xad 0x9 0xb 0x9 0x4 0x9 0x13 0x0 0x0 0x2 0xd3 0x0 0x0 0x2 0xcf 0x0 0x0 0x2 0xea 0x0 0x0 0x1 0xee 0x0 0x0 0x1 0xe8 0x0 0x0 0x0 0x0 0x3 0xe8 0x13 0x8c 0x25 0xac 0x1 0x7e 0xb 0xb8 0x2 0x0 0x0 0x0 0x62 0x67 0x98 0x48 0xff 0xff 0xff 0xff 0x0 0x0 0x1 0xea 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x52 0x69 0x0 0x9 0xdc 0x43 0x62 0x67 0xb6 0x6e 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x26
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x6d 0x0 0x0 0x0 0x6b 0x0 0x3 0x68 0x0 0x0 0x1 0xfa 0xf 0xa8 0xf 0xaa 0xf 0xad 0x9 0xb 0x9 0x4 0x9 0x13 0x0 0x0 0x2 0xd3 0x0 0x0 0x2 0xcf 0x0 0x0 0x2 0xea 0x0 0x0 0x1 0xee 0x0 0x0 0x1 0xe8 0x0 0x0 0x0 0x0 0x3 0xe8 0x13 0x8c 0x25 0xac 0x1 0x7e 0xb 0xb8 0x2 0x0 0x0 0x0 0x62 0x67 0x98 0x48 0xff 0xff 0xff 0xff 0x0 0x0 0x1 0xea 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x52 0x69 0x0 0x9 0xdc 0x43 0x62 0x67 0xb6 0x6e 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x26
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 109
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [0, 506, 4008, 4010, 4013, 2315, 2308, 2323, 0, 723, 0, 719, 0, 746, 0, 494, 0, 488, 0, 0, 1000, 5004, 9644, 382, 3000, 512, 0, 25191, 38984, 65535, 65535, 0, 490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 21097, 9, 56387, 25191, 46702, 0, 6, 0, 38]
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x01\xfa']
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\xd3']
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\xcf']
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\xea']
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x01\xee']
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x01\xe8']
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x00\x00']
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [b'bg', b'\x98H']
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [b'\xff\xff', b'\xff\xff']
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\t', b'Ri']
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x00&']
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] send: 0x0 0x6e 0x0 0x0 0x0 0x6 0x0 0x3 0x7d 0x10 0x0 0x4
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 110
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] recv: 0x0 0x6e 0x0 0x0 0x0 0xb 0x0 0x3 0x8 0x17 0x54 0x0 0x37 0x10 0xd6 0x0 0x2e
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x6e 0x0 0x0 0x0 0xb 0x0 0x3 0x8 0x17 0x54 0x0 0x37 0x10 0xd6 0x0 0x2e
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 110
2022-04-26 09:08:06 DEBUG (MainThread) [pymodbus.payload] [5972, 55, 4310, 46]
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] send: 0x0 0x6f 0x0 0x0 0x0 0x6 0x0 0x3 0x7d 0x40 0x0 0x34
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 111
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] recv: 0x0 0x6f 0x0 0x0 0x0 0x6b 0x0 0x3 0x68 0x0 0x0 0x2 0x4 0xf 0xb8 0xf 0xb3 0xf 0xba 0x9 0x14 0x9 0x14 0x9 0x10 0x0 0x0 0x2 0xe3 0x0 0x0 0x2 0xe0 0x0 0x0 0x2 0xf8 0x0 0x0 0x1 0xf2 0x0 0x0 0x1 0xf1 0x0 0x0 0x0 0x1 0x3 0xe8 0x13 0x8b 0x25 0xa3 0x1 0x7c 0xb 0xb8 0x2 0x0 0x0 0x0 0x62 0x67 0x98 0x48 0xff 0xff 0xff 0xff 0x0 0x0 0x1 0xf0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x52 0x6a 0x0 0x9 0xdc 0x43 0x62 0x67 0xb6 0x8a 0x0 0x0 0x0 0x7 0x0 0x0 0x0 0x27
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x6f 0x0 0x0 0x0 0x6b 0x0 0x3 0x68 0x0 0x0 0x2 0x4 0xf 0xb8 0xf 0xb3 0xf 0xba 0x9 0x14 0x9 0x14 0x9 0x10 0x0 0x0 0x2 0xe3 0x0 0x0 0x2 0xe0 0x0 0x0 0x2 0xf8 0x0 0x0 0x1 0xf2 0x0 0x0 0x1 0xf1 0x0 0x0 0x0 0x1 0x3 0xe8 0x13 0x8b 0x25 0xa3 0x1 0x7c 0xb 0xb8 0x2 0x0 0x0 0x0 0x62 0x67 0x98 0x48 0xff 0xff 0xff 0xff 0x0 0x0 0x1 0xf0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x52 0x6a 0x0 0x9 0xdc 0x43 0x62 0x67 0xb6 0x8a 0x0 0x0 0x0 0x7 0x0 0x0 0x0 0x27
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 111
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [0, 516, 4024, 4019, 4026, 2324, 2324, 2320, 0, 739, 0, 736, 0, 760, 0, 498, 0, 497, 0, 1, 1000, 5003, 9635, 380, 3000, 512, 0, 25191, 38984, 65535, 65535, 0, 496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 21098, 9, 56387, 25191, 46730, 0, 7, 0, 39]
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\x04']
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\xe3']
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\xe0']
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x02\xf8']
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x01\xf2']
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x01\xf1']
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b'\x00\x01']
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [b'bg', b'\x98H']
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [b'\xff\xff', b'\xff\xff']
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\t', b'Rj']
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [b'\x00\x00', b"\x00'"]
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] send: 0x0 0x70 0x0 0x0 0x0 0x6 0x0 0x3 0x7d 0x10 0x0 0x4
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 112
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.client.asynchronous.async_io] recv: 0x0 0x70 0x0 0x0 0x0 0xb 0x0 0x3 0x8 0x17 0x18 0x0 0x38 0x10 0xbb 0x0 0x30
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x70 0x0 0x0 0x0 0xb 0x0 0x3 0x8 0x17 0x18 0x0 0x38 0x10 0xbb 0x0 0x30
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 112
2022-04-26 09:08:36 DEBUG (MainThread) [pymodbus.payload] [5912, 56, 4283, 48]
2022-04-26 09:08:53 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 41807)
2022-04-26 09:08:53 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - WAITING_FOR_REPLY
2022-04-26 09:08:53 DEBUG (MainThread) [pymodbus.transaction] Running transaction 25
2022-04-26 09:08:53 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x19 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-04-26 09:08:53 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-04-26 09:08:53 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-04-26 09:08:53 ERROR (MainThread) [custom_components.solaredge_modbus] Error reading inverter at id 1: filedescriptor out of range in select()
HA uses pymodbus 2.5.3, so I suppose you miss the patch.
I use the dev version

I have some debug logs
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 55027)
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - IDLE
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.transaction] Running transaction 1
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x1 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x1 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x27 0xf2 0x27 0xf2 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x71 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x60 0x40 0xff 0xff 0xc3 0x51 0xff 0xfd 0x60 0x6d 0xff 0xff 0x3a 0x34 0xff 0xfe 0xd9 0x3 0xff 0xfe 0x1 0x25 0x63 0xfc 0x0 0x0 0x1a 0xd6 0xff 0xfd 0xe 0x39 0xff 0xff 0x61 0xb7 0xff 0xff 0x80 0x0 0x9 0x62 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x1 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x27 0xf2 0x27 0xf2 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x71 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x60 0x40 0xff 0xff 0xc3 0x51 0xff 0xfd 0x60 0x6d 0xff 0xff 0x3a 0x34 0xff 0xfe 0xd9 0x3 0xff 0xfe 0x1 0x25 0x63 0xfc 0x0 0x0 0x1a 0xd6 0xff 0xfd 0xe 0x39 0xff 0xff 0x61 0xb7 0xff 0xff 0x80 0x0 0x9 0x62 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 1
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 1
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 10226, 10226, 65535, 65535, 65533, 2417, 65535, 65535, 65535, 65535, 65535, 65535, 24640, 65535, 50001, 65533, 24685, 65535, 14900, 65534, 55555, 65534, 293, 25596, 0, 6870, 65533, 3641, 65535, 25015, 65535, 32768, 2402, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:19:19 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'c\xfc']
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 52049)
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.transaction] Running transaction 2
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x2 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x2 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1b 0x2 0x1b 0x2 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x5d 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x40 0x74 0xff 0xff 0xc3 0x5d 0xff 0xfd 0x40 0x8d 0xff 0xff 0xdc 0x74 0xff 0xfe 0x27 0x0 0xff 0xfe 0x1 0x25 0x64 0x14 0x0 0x0 0x12 0x24 0xff 0xfd 0xe 0x17 0xff 0xff 0x41 0x6f 0xff 0xff 0x80 0x0 0x9 0x68 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x2 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1b 0x2 0x1b 0x2 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x5d 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x40 0x74 0xff 0xff 0xc3 0x5d 0xff 0xfd 0x40 0x8d 0xff 0xff 0xdc 0x74 0xff 0xfe 0x27 0x0 0xff 0xfe 0x1 0x25 0x64 0x14 0x0 0x0 0x12 0x24 0xff 0xfd 0xe 0x17 0xff 0xff 0x41 0x6f 0xff 0xff 0x80 0x0 0x9 0x68 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 2
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 2
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 6914, 6914, 65535, 65535, 65533, 2397, 65535, 65535, 65535, 65535, 65535, 65535, 16500, 65535, 50013, 65533, 16525, 65535, 56436, 65534, 9984, 65534, 293, 25620, 0, 4644, 65533, 3607, 65535, 16751, 65535, 32768, 2408, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:20:04 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'd\x14']
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 45333)
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.transaction] Running transaction 3
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x3 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x3 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1d 0x24 0x1d 0x24 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x60 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x45 0xd8 0xff 0xff 0xc3 0x64 0xff 0xfd 0x45 0xe2 0xff 0xff 0xe7 0xc8 0xff 0xfe 0x27 0xa 0xff 0xfe 0x1 0x25 0x64 0x2c 0x0 0x0 0x13 0xa0 0xff 0xfd 0xe 0x1d 0xff 0xff 0x46 0xe8 0xff 0xff 0x80 0x0 0x9 0x64 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x3 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1d 0x24 0x1d 0x24 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x60 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x45 0xd8 0xff 0xff 0xc3 0x64 0xff 0xfd 0x45 0xe2 0xff 0xff 0xe7 0xc8 0xff 0xfe 0x27 0xa 0xff 0xfe 0x1 0x25 0x64 0x2c 0x0 0x0 0x13 0xa0 0xff 0xfd 0xe 0x1d 0xff 0xff 0x46 0xe8 0xff 0xff 0x80 0x0 0x9 0x64 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 3
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 3
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7460, 7460, 65535, 65535, 65533, 2400, 65535, 65535, 65535, 65535, 65535, 65535, 17880, 65535, 50020, 65533, 17890, 65535, 59336, 65534, 9994, 65534, 293, 25644, 0, 5024, 65533, 3613, 65535, 18152, 65535, 32768, 2404, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:20:49 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'd,']
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 54097)
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.transaction] Running transaction 4
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x4 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x4 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1c 0x2a 0x1c 0x2a 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x60 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x43 0x80 0xff 0xff 0xc3 0x59 0xff 0xfd 0x43 0x8a 0xff 0xff 0xe8 0x90 0xff 0xfe 0x27 0xa 0xff 0xfe 0x1 0x25 0x64 0x44 0x0 0x0 0x12 0xf4 0xff 0xfd 0xe 0x1f 0xff 0xff 0x44 0x87 0xff 0xff 0x80 0x0 0x9 0x6e 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x4 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1c 0x2a 0x1c 0x2a 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x60 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x43 0x80 0xff 0xff 0xc3 0x59 0xff 0xfd 0x43 0x8a 0xff 0xff 0xe8 0x90 0xff 0xfe 0x27 0xa 0xff 0xfe 0x1 0x25 0x64 0x44 0x0 0x0 0x12 0xf4 0xff 0xfd 0xe 0x1f 0xff 0xff 0x44 0x87 0xff 0xff 0x80 0x0 0x9 0x6e 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 4
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 4
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7210, 7210, 65535, 65535, 65533, 2400, 65535, 65535, 65535, 65535, 65535, 65535, 17280, 65535, 50009, 65533, 17290, 65535, 59536, 65534, 9994, 65534, 293, 25668, 0, 4852, 65533, 3615, 65535, 17543, 65535, 32768, 2414, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:21:34 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'dD']
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 51455)
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.transaction] Running transaction 5
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x5 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x5 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1e 0x8c 0x1e 0x8c 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x64 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x49 0x48 0xff 0xff 0xc3 0x5a 0xff 0xfd 0x49 0x58 0xff 0xff 0xe1 0xba 0xff 0xfe 0x27 0x7 0xff 0xfe 0x1 0x25 0x64 0x58 0x0 0x0 0x14 0x7e 0xff 0xfd 0xe 0x2e 0xff 0xff 0x4a 0x65 0xff 0xff 0x80 0x0 0x9 0x6e 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x5 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1e 0x8c 0x1e 0x8c 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x64 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x49 0x48 0xff 0xff 0xc3 0x5a 0xff 0xfd 0x49 0x58 0xff 0xff 0xe1 0xba 0xff 0xfe 0x27 0x7 0xff 0xfe 0x1 0x25 0x64 0x58 0x0 0x0 0x14 0x7e 0xff 0xfd 0xe 0x2e 0xff 0xff 0x4a 0x65 0xff 0xff 0x80 0x0 0x9 0x6e 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 5
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 5
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7820, 7820, 65535, 65535, 65533, 2404, 65535, 65535, 65535, 65535, 65535, 65535, 18760, 65535, 50010, 65533, 18776, 65535, 57786, 65534, 9991, 65534, 293, 25688, 0, 5246, 65533, 3630, 65535, 19045, 65535, 32768, 2414, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:22:19 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'dX']
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 55223)
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.transaction] Running transaction 6
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x6 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x6 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x21 0xa1 0x21 0xa1 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x6a 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x50 0xe6 0xff 0xff 0xc3 0x6f 0xff 0xfd 0x50 0xff 0xff 0xff 0x28 0xa 0xff 0xfe 0xd8 0xfd 0xff 0xfe 0x1 0x25 0x64 0x74 0x0 0x0 0x16 0x99 0xff 0xfd 0xe 0x32 0xff 0xff 0x52 0x21 0xff 0xff 0x80 0x0 0x9 0x79 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x6 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x21 0xa1 0x21 0xa1 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x6a 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x50 0xe6 0xff 0xff 0xc3 0x6f 0xff 0xfd 0x50 0xff 0xff 0xff 0x28 0xa 0xff 0xfe 0xd8 0xfd 0xff 0xfe 0x1 0x25 0x64 0x74 0x0 0x0 0x16 0x99 0xff 0xfd 0xe 0x32 0xff 0xff 0x52 0x21 0xff 0xff 0x80 0x0 0x9 0x79 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 6
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 6
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 8609, 8609, 65535, 65535, 65533, 2410, 65535, 65535, 65535, 65535, 65535, 65535, 20710, 65535, 50031, 65533, 20735, 65535, 10250, 65534, 55549, 65534, 293, 25716, 0, 5785, 65533, 3634, 65535, 21025, 65535, 32768, 2425, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:23:04 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'dt']
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 60769)
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.transaction] Running transaction 7
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x7 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x7 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x24 0x22 0x24 0x22 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x6a 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x57 0x12 0xff 0xff 0xc3 0x5b 0xff 0xfd 0x57 0x22 0xff 0xff 0xde 0xcc 0xff 0xfe 0x27 0x8 0xff 0xfe 0x1 0x25 0x64 0x90 0x0 0x0 0x18 0x8f 0xff 0xfd 0xe 0xf 0xff 0xff 0x58 0x65 0xff 0xff 0x80 0x0 0x9 0x85 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x7 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x24 0x22 0x24 0x22 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x6a 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x57 0x12 0xff 0xff 0xc3 0x5b 0xff 0xfd 0x57 0x22 0xff 0xff 0xde 0xcc 0xff 0xfe 0x27 0x8 0xff 0xfe 0x1 0x25 0x64 0x90 0x0 0x0 0x18 0x8f 0xff 0xfd 0xe 0xf 0xff 0xff 0x58 0x65 0xff 0xff 0x80 0x0 0x9 0x85 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 7
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 7
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 9250, 9250, 65535, 65535, 65533, 2410, 65535, 65535, 65535, 65535, 65535, 65535, 22290, 65535, 50011, 65533, 22306, 65535, 57036, 65534, 9992, 65534, 293, 25744, 0, 6287, 65533, 3599, 65535, 22629, 65535, 32768, 2437, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:23:49 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'd\x90']
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 43669)
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.transaction] Running transaction 8
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x8 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x8 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1d 0x24 0x1d 0x24 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x5f 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x45 0xb0 0xff 0xff 0xc3 0x57 0xff 0xfd 0x45 0xdd 0xff 0xff 0x32 0x0 0xff 0xfe 0xd9 0xa 0xff 0xfe 0x1 0x25 0x64 0xac 0x0 0x0 0x13 0x94 0xff 0xfd 0xe 0x1d 0xff 0xff 0x46 0xbf 0xff 0xff 0x80 0x0 0x9 0x8b 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x8 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1d 0x24 0x1d 0x24 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x5f 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x45 0xb0 0xff 0xff 0xc3 0x57 0xff 0xfd 0x45 0xdd 0xff 0xff 0x32 0x0 0xff 0xfe 0xd9 0xa 0xff 0xfe 0x1 0x25 0x64 0xac 0x0 0x0 0x13 0x94 0xff 0xfd 0xe 0x1d 0xff 0xff 0x46 0xbf 0xff 0xff 0x80 0x0 0x9 0x8b 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 8
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 8
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7460, 7460, 65535, 65535, 65533, 2399, 65535, 65535, 65535, 65535, 65535, 65535, 17840, 65535, 50007, 65533, 17885, 65535, 12800, 65534, 55562, 65534, 293, 25772, 0, 5012, 65533, 3613, 65535, 18111, 65535, 32768, 2443, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:24:34 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'd\xac']
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 35705)
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.transaction] Running transaction 9
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x9 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x9 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x19 0xc9 0x19 0xc9 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x57 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x3d 0x86 0xff 0xff 0xc3 0x53 0xff 0xfd 0x3d 0x9a 0xff 0xff 0xe0 0xf2 0xff 0xfe 0x27 0x3 0xff 0xfe 0x1 0x25 0x64 0xc0 0x0 0x0 0x11 0x58 0xff 0xfd 0xe 0x11 0xff 0xff 0x3e 0x75 0xff 0xff 0x80 0x0 0x9 0x89 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x9 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x19 0xc9 0x19 0xc9 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x57 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x3d 0x86 0xff 0xff 0xc3 0x53 0xff 0xfd 0x3d 0x9a 0xff 0xff 0xe0 0xf2 0xff 0xfe 0x27 0x3 0xff 0xfe 0x1 0x25 0x64 0xc0 0x0 0x0 0x11 0x58 0xff 0xfd 0xe 0x11 0xff 0xff 0x3e 0x75 0xff 0xff 0x80 0x0 0x9 0x89 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 9
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 9
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 6601, 6601, 65535, 65535, 65533, 2391, 65535, 65535, 65535, 65535, 65535, 65535, 15750, 65535, 50003, 65533, 15770, 65535, 57586, 65534, 9987, 65534, 293, 25792, 0, 4440, 65533, 3601, 65535, 15989, 65535, 32768, 2441, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:25:19 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'd\xc0']
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 48523)
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.transaction] Running transaction 10
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0xa 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0xa 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x19 0x4c 0x19 0x4c 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x5e 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x3c 0x5a 0xff 0xff 0xc3 0x47 0xff 0xfd 0x3c 0x82 0xff 0xff 0x2b 0xc0 0xff 0xfe 0xd9 0xa 0xff 0xfe 0x1 0x25 0x64 0xd4 0x0 0x0 0x10 0xfb 0xff 0xfd 0xe 0x18 0xff 0xff 0x3d 0x45 0xff 0xff 0x80 0x0 0x9 0x89 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0xa 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x19 0x4c 0x19 0x4c 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x5e 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x3c 0x5a 0xff 0xff 0xc3 0x47 0xff 0xfd 0x3c 0x82 0xff 0xff 0x2b 0xc0 0xff 0xfe 0xd9 0xa 0xff 0xfe 0x1 0x25 0x64 0xd4 0x0 0x0 0x10 0xfb 0xff 0xfd 0xe 0x18 0xff 0xff 0x3d 0x45 0xff 0xff 0x80 0x0 0x9 0x89 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 10
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 10
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 6476, 6476, 65535, 65535, 65533, 2398, 65535, 65535, 65535, 65535, 65535, 65535, 15450, 65535, 49991, 65533, 15490, 65535, 11200, 65534, 55562, 65534, 293, 25812, 0, 4347, 65533, 3608, 65535, 15685, 65535, 32768, 2441, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:26:04 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'd\xd4']
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 38457)
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.transaction] Running transaction 11
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0xb 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0xb 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1b 0x11 0x1b 0x11 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x61 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x40 0xce 0xff 0xff 0xc3 0x58 0xff 0xfd 0x40 0xdd 0xff 0xff 0xe4 0x44 0xff 0xfe 0x27 0x6 0xff 0xfe 0x1 0x25 0x64 0xe8 0x0 0x0 0x12 0x31 0xff 0xfd 0xe 0x20 0xff 0xff 0x41 0xca 0xff 0xff 0x80 0x0 0x9 0x87 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0xb 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1b 0x11 0x1b 0x11 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x61 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x40 0xce 0xff 0xff 0xc3 0x58 0xff 0xfd 0x40 0xdd 0xff 0xff 0xe4 0x44 0xff 0xfe 0x27 0x6 0xff 0xfe 0x1 0x25 0x64 0xe8 0x0 0x0 0x12 0x31 0xff 0xfd 0xe 0x20 0xff 0xff 0x41 0xca 0xff 0xff 0x80 0x0 0x9 0x87 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 11
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 11
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 6929, 6929, 65535, 65535, 65533, 2401, 65535, 65535, 65535, 65535, 65535, 65535, 16590, 65535, 50008, 65533, 16605, 65535, 58436, 65534, 9990, 65534, 293, 25832, 0, 4657, 65533, 3616, 65535, 16842, 65535, 32768, 2439, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:26:49 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'd\xe8']
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 51515)
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.transaction] Running transaction 12
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0xc 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0xc 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1c 0xee 0x1c 0xee 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x63 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x45 0x60 0xff 0xff 0xc3 0x43 0xff 0xfd 0x45 0x6e 0xff 0xff 0x1c 0x84 0xff 0xfe 0xd8 0xf9 0xff 0xfe 0x1 0x25 0x65 0x0 0x0 0x0 0x13 0x70 0xff 0xfd 0xe 0x27 0xff 0xff 0x46 0x6e 0xff 0xff 0x80 0x0 0x9 0x8d 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0xc 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1c 0xee 0x1c 0xee 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x63 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x45 0x60 0xff 0xff 0xc3 0x43 0xff 0xfd 0x45 0x6e 0xff 0xff 0x1c 0x84 0xff 0xfe 0xd8 0xf9 0xff 0xfe 0x1 0x25 0x65 0x0 0x0 0x0 0x13 0x70 0xff 0xfd 0xe 0x27 0xff 0xff 0x46 0x6e 0xff 0xff 0x80 0x0 0x9 0x8d 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 12
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 12
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7406, 7406, 65535, 65535, 65533, 2403, 65535, 65535, 65535, 65535, 65535, 65535, 17760, 65535, 49987, 65533, 17774, 65535, 7300, 65534, 55545, 65534, 293, 25856, 0, 4976, 65533, 3623, 65535, 18030, 65535, 32768, 2445, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:27:34 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'e\x00']
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 49333)
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.transaction] Running transaction 13
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0xd 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0xd 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1d 0x3c 0x1d 0x3c 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x67 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x46 0x14 0xff 0xff 0xc3 0x48 0xff 0xfd 0x46 0x32 0xff 0xff 0xd6 0xfc 0xff 0xfe 0x26 0xff 0xff 0xfe 0x1 0x25 0x65 0x14 0x0 0x0 0x13 0x8e 0xff 0xfd 0xe 0x36 0xff 0xff 0x47 0x25 0xff 0xff 0x80 0x0 0x9 0x85 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0xd 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1d 0x3c 0x1d 0x3c 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x67 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x46 0x14 0xff 0xff 0xc3 0x48 0xff 0xfd 0x46 0x32 0xff 0xff 0xd6 0xfc 0xff 0xfe 0x26 0xff 0xff 0xfe 0x1 0x25 0x65 0x14 0x0 0x0 0x13 0x8e 0xff 0xfd 0xe 0x36 0xff 0xff 0x47 0x25 0xff 0xff 0x80 0x0 0x9 0x85 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 13
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 13
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7484, 7484, 65535, 65535, 65533, 2407, 65535, 65535, 65535, 65535, 65535, 65535, 17940, 65535, 49992, 65533, 17970, 65535, 55036, 65534, 9983, 65534, 293, 25876, 0, 5006, 65533, 3638, 65535, 18213, 65535, 32768, 2437, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:28:19 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'e\x14']
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 58361)
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.transaction] Running transaction 14
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0xe 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0xe 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1d 0xa1 0x1d 0xa1 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x6a 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x46 0xfa 0xff 0xff 0xc3 0x5c 0xff 0xfd 0x47 0x13 0xff 0xff 0xda 0x80 0xff 0xfe 0x27 0x1 0xff 0xfe 0x1 0x25 0x65 0x2e 0x0 0x0 0x13 0xd3 0xff 0xfd 0xe 0x32 0xff 0xff 0x48 0xe 0xff 0xff 0x80 0x0 0x9 0x8f 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0xe 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1d 0xa1 0x1d 0xa1 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x6a 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x46 0xfa 0xff 0xff 0xc3 0x5c 0xff 0xfd 0x47 0x13 0xff 0xff 0xda 0x80 0xff 0xfe 0x27 0x1 0xff 0xfe 0x1 0x25 0x65 0x2e 0x0 0x0 0x13 0xd3 0xff 0xfd 0xe 0x32 0xff 0xff 0x48 0xe 0xff 0xff 0x80 0x0 0x9 0x8f 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 14
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 14
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7585, 7585, 65535, 65535, 65533, 2410, 65535, 65535, 65535, 65535, 65535, 65535, 18170, 65535, 50012, 65533, 18195, 65535, 55936, 65534, 9985, 65534, 293, 25902, 0, 5075, 65533, 3634, 65535, 18446, 65535, 32768, 2447, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:29:04 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'e.']
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 37885)
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.transaction] Running transaction 15
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0xf 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0xf 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1e 0x84 0x1e 0x84 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x60 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x49 0x2a 0xff 0xff 0xc3 0x4f 0xff 0xfd 0x49 0x43 0xff 0xff 0x25 0xe4 0xff 0xfe 0xd8 0xfe 0xff 0xfe 0x1 0x25 0x65 0x44 0x0 0x0 0x14 0x73 0xff 0xfd 0xe 0x30 0xff 0xff 0x4a 0x47 0xff 0xff 0x80 0x0 0x9 0x95 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0xf 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1e 0x84 0x1e 0x84 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x60 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x49 0x2a 0xff 0xff 0xc3 0x4f 0xff 0xfd 0x49 0x43 0xff 0xff 0x25 0xe4 0xff 0xfe 0xd8 0xfe 0xff 0xfe 0x1 0x25 0x65 0x44 0x0 0x0 0x14 0x73 0xff 0xfd 0xe 0x30 0xff 0xff 0x4a 0x47 0xff 0xff 0x80 0x0 0x9 0x95 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 15
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 15
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7812, 7812, 65535, 65535, 65533, 2400, 65535, 65535, 65535, 65535, 65535, 65535, 18730, 65535, 49999, 65533, 18755, 65535, 9700, 65534, 55550, 65534, 293, 25924, 0, 5235, 65533, 3632, 65535, 19015, 65535, 32768, 2453, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:29:49 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'eD']
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 34017)
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.transaction] Running transaction 16
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x10 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x10 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x20 0x32 0x20 0x32 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x5f 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x4d 0x1c 0xff 0xff 0xc3 0x43 0xff 0xfd 0x4d 0x30 0xff 0xff 0xdd 0xa 0xff 0xfe 0x27 0x5 0xff 0xfe 0x1 0x25 0x65 0x5c 0x0 0x0 0x15 0x9b 0xff 0xfd 0xe 0x27 0xff 0xff 0x4e 0x48 0xff 0xff 0x80 0x0 0x9 0x95 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x10 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x20 0x32 0x20 0x32 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x5f 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x4d 0x1c 0xff 0xff 0xc3 0x43 0xff 0xfd 0x4d 0x30 0xff 0xff 0xdd 0xa 0xff 0xfe 0x27 0x5 0xff 0xfe 0x1 0x25 0x65 0x5c 0x0 0x0 0x15 0x9b 0xff 0xfd 0xe 0x27 0xff 0xff 0x4e 0x48 0xff 0xff 0x80 0x0 0x9 0x95 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 16
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 16
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 8242, 8242, 65535, 65535, 65533, 2399, 65535, 65535, 65535, 65535, 65535, 65535, 19740, 65535, 49987, 65533, 19760, 65535, 56586, 65534, 9989, 65534, 293, 25948, 0, 5531, 65533, 3623, 65535, 20040, 65535, 32768, 2453, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:30:34 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'e\\']
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 40817)
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.transaction] Running transaction 17
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x11 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x11 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1b 0xfc 0x1b 0xfc 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x5d 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x42 0xd6 0xff 0xff 0xc3 0x4c 0xff 0xfd 0x42 0xee 0xff 0xff 0x24 0x22 0xff 0xfe 0xd8 0xff 0xff 0xfe 0x1 0x25 0x65 0x74 0x0 0x0 0x12 0xd2 0xff 0xfd 0xe 0x15 0xff 0xff 0x43 0xda 0xff 0xff 0x80 0x0 0x9 0x9d 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x11 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1b 0xfc 0x1b 0xfc 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x5d 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x42 0xd6 0xff 0xff 0xc3 0x4c 0xff 0xfd 0x42 0xee 0xff 0xff 0x24 0x22 0xff 0xfe 0xd8 0xff 0xff 0xfe 0x1 0x25 0x65 0x74 0x0 0x0 0x12 0xd2 0xff 0xfd 0xe 0x15 0xff 0xff 0x43 0xda 0xff 0xff 0x80 0x0 0x9 0x9d 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 17
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 17
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7164, 7164, 65535, 65535, 65533, 2397, 65535, 65535, 65535, 65535, 65535, 65535, 17110, 65535, 49996, 65533, 17134, 65535, 9250, 65534, 55551, 65534, 293, 25972, 0, 4818, 65533, 3605, 65535, 17370, 65535, 32768, 2461, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:31:19 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'et']
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 56273)
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.transaction] Running transaction 18
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x12 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x12 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x23 0x7d 0x23 0x7d 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x68 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x55 0x46 0xff 0xff 0xc3 0x67 0xff 0xfd 0x55 0x55 0xff 0xff 0xdf 0x62 0xff 0xfe 0x27 0x8 0xff 0xfe 0x1 0x25 0x65 0x8c 0x0 0x0 0x17 0xda 0xff 0xfd 0xe 0x2d 0xff 0xff 0x56 0x92 0xff 0xff 0x80 0x0 0x9 0x97 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x12 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x23 0x7d 0x23 0x7d 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x68 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x55 0x46 0xff 0xff 0xc3 0x67 0xff 0xfd 0x55 0x55 0xff 0xff 0xdf 0x62 0xff 0xfe 0x27 0x8 0xff 0xfe 0x1 0x25 0x65 0x8c 0x0 0x0 0x17 0xda 0xff 0xfd 0xe 0x2d 0xff 0xff 0x56 0x92 0xff 0xff 0x80 0x0 0x9 0x97 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 18
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 18
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 9085, 9085, 65535, 65535, 65533, 2408, 65535, 65535, 65535, 65535, 65535, 65535, 21830, 65535, 50023, 65533, 21845, 65535, 57186, 65534, 9992, 65534, 293, 25996, 0, 6106, 65533, 3629, 65535, 22162, 65535, 32768, 2455, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:32:04 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'e\x8c']
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 45805)
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.transaction] Running transaction 19
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x13 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x13 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x27 0xbb 0x27 0xbb 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x6f 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x5f 0xb4 0xff 0xff 0xc3 0x68 0xff 0xfd 0x5f 0xc4 0xff 0xff 0x22 0xf6 0xff 0xfe 0xd8 0xf7 0xff 0xfe 0x1 0x25 0x65 0xaa 0x0 0x0 0x1a 0xb1 0xff 0xfd 0xe 0x38 0xff 0xff 0x61 0x29 0xff 0xff 0x80 0x0 0x9 0xaa 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x13 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x27 0xbb 0x27 0xbb 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x6f 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x5f 0xb4 0xff 0xff 0xc3 0x68 0xff 0xfd 0x5f 0xc4 0xff 0xff 0x22 0xf6 0xff 0xfe 0xd8 0xf7 0xff 0xfe 0x1 0x25 0x65 0xaa 0x0 0x0 0x1a 0xb1 0xff 0xfd 0xe 0x38 0xff 0xff 0x61 0x29 0xff 0xff 0x80 0x0 0x9 0xaa 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 19
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 19
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 10171, 10171, 65535, 65535, 65533, 2415, 65535, 65535, 65535, 65535, 65535, 65535, 24500, 65535, 50024, 65533, 24516, 65535, 8950, 65534, 55543, 65534, 293, 26026, 0, 6833, 65533, 3640, 65535, 24873, 65535, 32768, 2474, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:32:49 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'e\xaa']
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 55675)
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.transaction] Running transaction 20
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x14 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x14 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x22 0x6c 0x22 0x6c 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x6b 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x52 0xbc 0xff 0xff 0xc3 0x61 0xff 0xfd 0x52 0xd5 0xff 0xff 0x28 0xd2 0xff 0xfe 0xd8 0xfd 0xff 0xfe 0x1 0x25 0x65 0xc6 0x0 0x0 0x17 0x14 0xff 0xfd 0xe 0x37 0xff 0xff 0x53 0xfe 0xff 0xff 0x80 0x0 0x9 0xb8 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x14 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x22 0x6c 0x22 0x6c 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x6b 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x52 0xbc 0xff 0xff 0xc3 0x61 0xff 0xfd 0x52 0xd5 0xff 0xff 0x28 0xd2 0xff 0xfe 0xd8 0xfd 0xff 0xfe 0x1 0x25 0x65 0xc6 0x0 0x0 0x17 0x14 0xff 0xfd 0xe 0x37 0xff 0xff 0x53 0xfe 0xff 0xff 0x80 0x0 0x9 0xb8 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 20
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 20
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 8812, 8812, 65535, 65535, 65533, 2411, 65535, 65535, 65535, 65535, 65535, 65535, 21180, 65535, 50017, 65533, 21205, 65535, 10450, 65534, 55549, 65534, 293, 26054, 0, 5908, 65533, 3639, 65535, 21502, 65535, 32768, 2488, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:33:34 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'e\xc6']
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 36887)
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.transaction] Running transaction 21
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x15 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x15 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1a 0xe2 0x1a 0xe2 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x61 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x40 0x56 0xff 0xff 0xc3 0x69 0xff 0xfd 0x40 0x74 0xff 0xff 0xd9 0x22 0xff 0xfe 0x26 0xfd 0xff 0xfe 0x1 0x25 0x65 0xde 0x0 0x0 0x12 0x0 0xff 0xfd 0xe 0x2c 0xff 0xff 0x41 0x50 0xff 0xff 0x80 0x0 0x9 0xba 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x15 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1a 0xe2 0x1a 0xe2 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x61 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x40 0x56 0xff 0xff 0xc3 0x69 0xff 0xfd 0x40 0x74 0xff 0xff 0xd9 0x22 0xff 0xfe 0x26 0xfd 0xff 0xfe 0x1 0x25 0x65 0xde 0x0 0x0 0x12 0x0 0xff 0xfd 0xe 0x2c 0xff 0xff 0x41 0x50 0xff 0xff 0x80 0x0 0x9 0xba 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 21
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 21
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 6882, 6882, 65535, 65535, 65533, 2401, 65535, 65535, 65535, 65535, 65535, 65535, 16470, 65535, 50025, 65533, 16500, 65535, 55586, 65534, 9981, 65534, 293, 26078, 0, 4608, 65533, 3628, 65535, 16720, 65535, 32768, 2490, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:34:19 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'e\xde']
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 42279)
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.transaction] Running transaction 22
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x16 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x16 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1c 0xcf 0x1c 0xcf 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x62 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x45 0x6 0xff 0xff 0xc3 0x64 0xff 0xfd 0x45 0x1a 0xff 0xff 0x21 0x34 0xff 0xfe 0xd8 0xfc 0xff 0xfe 0x1 0x25 0x65 0xf4 0x0 0x0 0x13 0x4d 0xff 0xfd 0xe 0x2e 0xff 0xff 0x46 0x13 0xff 0xff 0x80 0x0 0x9 0xba 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x16 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1c 0xcf 0x1c 0xcf 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x62 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x45 0x6 0xff 0xff 0xc3 0x64 0xff 0xfd 0x45 0x1a 0xff 0xff 0x21 0x34 0xff 0xfe 0xd8 0xfc 0xff 0xfe 0x1 0x25 0x65 0xf4 0x0 0x0 0x13 0x4d 0xff 0xfd 0xe 0x2e 0xff 0xff 0x46 0x13 0xff 0xff 0x80 0x0 0x9 0xba 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 22
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 22
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7375, 7375, 65535, 65535, 65533, 2402, 65535, 65535, 65535, 65535, 65535, 65535, 17670, 65535, 50020, 65533, 17690, 65535, 8500, 65534, 55548, 65534, 293, 26100, 0, 4941, 65533, 3630, 65535, 17939, 65535, 32768, 2490, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:35:04 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'e\xf4']
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 52123)
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.transaction] Running transaction 23
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x17 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x17 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1c 0x3a 0x1c 0x3a 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x63 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x43 0xb2 0xff 0xff 0xc3 0x5c 0xff 0xfd 0x43 0xcb 0xff 0xff 0xdb 0x7a 0xff 0xfe 0x27 0x1 0xff 0xfe 0x1 0x25 0x66 0xc 0x0 0x0 0x13 0x1 0xff 0xfd 0xe 0x20 0xff 0xff 0x44 0xb9 0xff 0xff 0x80 0x0 0x9 0xb1 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x17 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1c 0x3a 0x1c 0x3a 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x63 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x43 0xb2 0xff 0xff 0xc3 0x5c 0xff 0xfd 0x43 0xcb 0xff 0xff 0xdb 0x7a 0xff 0xfe 0x27 0x1 0xff 0xfe 0x1 0x25 0x66 0xc 0x0 0x0 0x13 0x1 0xff 0xfd 0xe 0x20 0xff 0xff 0x44 0xb9 0xff 0xff 0x80 0x0 0x9 0xb1 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 23
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 23
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7226, 7226, 65535, 65535, 65533, 2403, 65535, 65535, 65535, 65535, 65535, 65535, 17330, 65535, 50012, 65533, 17355, 65535, 56186, 65534, 9985, 65534, 293, 26124, 0, 4865, 65533, 3616, 65535, 17593, 65535, 32768, 2481, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:35:49 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'f\x0c']
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 48087)
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.transaction] Running transaction 24
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x18 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x18 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x26 0xd1 0x26 0xd1 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x71 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x5d 0xc0 0xff 0xff 0xc3 0x64 0xff 0xfd 0x5d 0xca 0xff 0xff 0xe4 0xa8 0xff 0xfe 0x27 0xb 0xff 0xfe 0x1 0x25 0x66 0x24 0x0 0x0 0x1a 0x2d 0xff 0xfd 0xe 0x34 0xff 0xff 0x5f 0x2d 0xff 0xff 0x80 0x0 0x9 0xb7 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x18 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x26 0xd1 0x26 0xd1 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x71 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x5d 0xc0 0xff 0xff 0xc3 0x64 0xff 0xfd 0x5d 0xca 0xff 0xff 0xe4 0xa8 0xff 0xfe 0x27 0xb 0xff 0xfe 0x1 0x25 0x66 0x24 0x0 0x0 0x1a 0x2d 0xff 0xfd 0xe 0x34 0xff 0xff 0x5f 0x2d 0xff 0xff 0x80 0x0 0x9 0xb7 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 24
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 24
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 9937, 9937, 65535, 65535, 65533, 2417, 65535, 65535, 65535, 65535, 65535, 65535, 24000, 65535, 50020, 65533, 24010, 65535, 58536, 65534, 9995, 65534, 293, 26148, 0, 6701, 65533, 3636, 65535, 24365, 65535, 32768, 2487, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:36:34 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'f$']
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 55885)
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.transaction] Running transaction 25
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x19 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x19 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x20 0x70 0x20 0x70 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x66 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x4d 0xe4 0xff 0xff 0xc3 0x68 0xff 0xfd 0x4d 0xfd 0xff 0xff 0x27 0x74 0xff 0xfe 0xd8 0xfd 0xff 0xfe 0x1 0x25 0x66 0x42 0x0 0x0 0x15 0xde 0xff 0xfd 0xe 0x20 0xff 0xff 0x4f 0x13 0xff 0xff 0x80 0x0 0x9 0xcf 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x19 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x20 0x70 0x20 0x70 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x66 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x4d 0xe4 0xff 0xff 0xc3 0x68 0xff 0xfd 0x4d 0xfd 0xff 0xff 0x27 0x74 0xff 0xfe 0xd8 0xfd 0xff 0xfe 0x1 0x25 0x66 0x42 0x0 0x0 0x15 0xde 0xff 0xfd 0xe 0x20 0xff 0xff 0x4f 0x13 0xff 0xff 0x80 0x0 0x9 0xcf 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 25
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 25
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 8304, 8304, 65535, 65535, 65533, 2406, 65535, 65535, 65535, 65535, 65535, 65535, 19940, 65535, 50024, 65533, 19965, 65535, 10100, 65534, 55549, 65534, 293, 26178, 0, 5598, 65533, 3616, 65535, 20243, 65535, 32768, 2511, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:37:19 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'fB']
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 53739)
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.transaction] Running transaction 26
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x1a 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x1a 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1e 0xe2 0x1e 0xe2 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x62 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x4a 0x1a 0xff 0xff 0xc3 0x5e 0xff 0xfd 0x4a 0x29 0xff 0xff 0xe2 0x82 0xff 0xfe 0x27 0x8 0xff 0xfe 0x1 0x25 0x66 0x58 0x0 0x0 0x14 0xbd 0xff 0xfd 0xe 0x2b 0xff 0xff 0x4b 0x3a 0xff 0xff 0x80 0x0 0x9 0xca 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x1a 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1e 0xe2 0x1e 0xe2 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x62 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x4a 0x1a 0xff 0xff 0xc3 0x5e 0xff 0xfd 0x4a 0x29 0xff 0xff 0xe2 0x82 0xff 0xfe 0x27 0x8 0xff 0xfe 0x1 0x25 0x66 0x58 0x0 0x0 0x14 0xbd 0xff 0xfd 0xe 0x2b 0xff 0xff 0x4b 0x3a 0xff 0xff 0x80 0x0 0x9 0xca 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 26
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 26
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7906, 7906, 65535, 65535, 65533, 2402, 65535, 65535, 65535, 65535, 65535, 65535, 18970, 65535, 50014, 65533, 18985, 65535, 57986, 65534, 9992, 65534, 293, 26200, 0, 5309, 65533, 3627, 65535, 19258, 65535, 32768, 2506, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:38:04 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'fX']
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 44895)
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.transaction] Running transaction 27
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x1b 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x1b 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x22 0x74 0x22 0x74 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x6b 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x52 0xee 0xff 0xff 0xc3 0x4c 0xff 0xfd 0x53 0x7 0xff 0xff 0xd6 0xfc 0xff 0xfe 0x27 0x3 0xff 0xfe 0x1 0x25 0x66 0x74 0x0 0x0 0x17 0x29 0xff 0xfd 0xe 0x33 0xff 0xff 0x54 0x31 0xff 0xff 0x80 0x0 0x9 0xca 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x1b 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x22 0x74 0x22 0x74 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x6b 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x52 0xee 0xff 0xff 0xc3 0x4c 0xff 0xfd 0x53 0x7 0xff 0xff 0xd6 0xfc 0xff 0xfe 0x27 0x3 0xff 0xfe 0x1 0x25 0x66 0x74 0x0 0x0 0x17 0x29 0xff 0xfd 0xe 0x33 0xff 0xff 0x54 0x31 0xff 0xff 0x80 0x0 0x9 0xca 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 27
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 27
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 8820, 8820, 65535, 65535, 65533, 2411, 65535, 65535, 65535, 65535, 65535, 65535, 21230, 65535, 49996, 65533, 21255, 65535, 55036, 65534, 9987, 65534, 293, 26228, 0, 5929, 65533, 3635, 65535, 21553, 65535, 32768, 2506, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:38:49 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'ft']
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 44741)
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.transaction] Running transaction 28
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x1c 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x1c 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1e 0x84 0x1e 0x84 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x63 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x49 0x2 0xff 0xff 0xc3 0x47 0xff 0xfd 0x49 0x20 0xff 0xff 0xd6 0x2 0xff 0xfe 0x26 0xff 0xff 0xfe 0x1 0x25 0x66 0x8c 0x0 0x0 0x14 0x7a 0xff 0xfd 0xe 0x23 0xff 0xff 0x4a 0x1e 0xff 0xff 0x80 0x0 0x9 0xd0 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x1c 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1e 0x84 0x1e 0x84 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x63 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x49 0x2 0xff 0xff 0xc3 0x47 0xff 0xfd 0x49 0x20 0xff 0xff 0xd6 0x2 0xff 0xfe 0x26 0xff 0xff 0xfe 0x1 0x25 0x66 0x8c 0x0 0x0 0x14 0x7a 0xff 0xfd 0xe 0x23 0xff 0xff 0x4a 0x1e 0xff 0xff 0x80 0x0 0x9 0xd0 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 28
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 28
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7812, 7812, 65535, 65535, 65533, 2403, 65535, 65535, 65535, 65535, 65535, 65535, 18690, 65535, 49991, 65533, 18720, 65535, 54786, 65534, 9983, 65534, 293, 26252, 0, 5242, 65533, 3619, 65535, 18974, 65535, 32768, 2512, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:39:34 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'f\x8c']
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 58043)
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.transaction] Running transaction 29
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x1d 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x1d 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1d 0x2c 0x1d 0x2c 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x63 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x45 0xec 0xff 0xff 0xc3 0x56 0xff 0xfd 0x46 0x0 0xff 0xff 0x21 0x98 0xff 0xfe 0xd8 0xfc 0xff 0xfe 0x1 0x25 0x66 0xa6 0x0 0x0 0x13 0x87 0xff 0xfd 0xe 0x33 0xff 0xff 0x46 0xfc 0xff 0xff 0x80 0x0 0x9 0xda 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x1d 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1d 0x2c 0x1d 0x2c 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x63 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x45 0xec 0xff 0xff 0xc3 0x56 0xff 0xfd 0x46 0x0 0xff 0xff 0x21 0x98 0xff 0xfe 0xd8 0xfc 0xff 0xfe 0x1 0x25 0x66 0xa6 0x0 0x0 0x13 0x87 0xff 0xfd 0xe 0x33 0xff 0xff 0x46 0xfc 0xff 0xff 0x80 0x0 0x9 0xda 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 29
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 29
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 7468, 7468, 65535, 65535, 65533, 2403, 65535, 65535, 65535, 65535, 65535, 65535, 17900, 65535, 50006, 65533, 17920, 65535, 8600, 65534, 55548, 65534, 293, 26278, 0, 4999, 65533, 3635, 65535, 18172, 65535, 32768, 2522, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:40:19 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'f\xa6']
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 58939)
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.transaction] Running transaction 30
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x1e 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x1e 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1b 0x50 0x1b 0x50 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x5f 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x41 0x5a 0xff 0xff 0xc3 0x5b 0xff 0xfd 0x41 0x6e 0xff 0xff 0xdf 0xc6 0xff 0xfe 0x27 0x3 0xff 0xfe 0x1 0x25 0x66 0xbc 0x0 0x0 0x12 0x56 0xff 0xfd 0xe 0x22 0xff 0xff 0x42 0x58 0xff 0xff 0x80 0x0 0x9 0xd5 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x1e 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1b 0x50 0x1b 0x50 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x5f 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x41 0x5a 0xff 0xff 0xc3 0x5b 0xff 0xfd 0x41 0x6e 0xff 0xff 0xdf 0xc6 0xff 0xfe 0x27 0x3 0xff 0xfe 0x1 0x25 0x66 0xbc 0x0 0x0 0x12 0x56 0xff 0xfd 0xe 0x22 0xff 0xff 0x42 0x58 0xff 0xff 0x80 0x0 0x9 0xd5 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 30
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 30
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 6992, 6992, 65535, 65535, 65533, 2399, 65535, 65535, 65535, 65535, 65535, 65535, 16730, 65535, 50011, 65533, 16750, 65535, 57286, 65534, 9987, 65534, 293, 26300, 0, 4694, 65533, 3618, 65535, 16984, 65535, 32768, 2517, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:41:04 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'f\xbc']
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 49593)
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.transaction] Running transaction 31
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x1f 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'WAITING FOR REPLY' to 'PROCESSING REPLY'
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.transaction] RECV: 0x0 0x1f 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1f 0xad 0x1f 0xad 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x67 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x4c 0x18 0xff 0xff 0xc3 0x72 0xff 0xfd 0x4c 0x27 0xff 0xff 0xe1 0xba 0xff 0xfe 0x27 0x8 0xff 0xfe 0x1 0x25 0x66 0xd4 0x0 0x0 0x15 0x4d 0xff 0xfd 0xe 0x2a 0xff 0xff 0x4d 0x40 0xff 0xff 0x80 0x0 0x9 0xd0 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.framer.socket_framer] Processing: 0x0 0x1f 0x0 0x0 0x0 0xdb 0x1 0x3 0xd8 0x53 0x6f 0x6c 0x61 0x72 0x45 0x64 0x67 0x65 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x53 0x45 0x33 0x30 0x30 0x30 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x30 0x30 0x30 0x33 0x2e 0x32 0x35 0x33 0x37 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x37 0x46 0x31 0x35 0x30 0x35 0x35 0x36 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x65 0x0 0x32 0x1f 0xad 0x1f 0xad 0xff 0xff 0xff 0xff 0xff 0xfd 0x9 0x67 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x4c 0x18 0xff 0xff 0xc3 0x72 0xff 0xfd 0x4c 0x27 0xff 0xff 0xe1 0xba 0xff 0xfe 0x27 0x8 0xff 0xfe 0x1 0x25 0x66 0xd4 0x0 0x0 0x15 0x4d 0xff 0xfd 0xe 0x2a 0xff 0xff 0x4d 0x40 0xff 0xff 0x80 0x0 0x9 0xd0 0x80 0x0 0x80 0x0 0xff 0xfe 0x0 0x4 0x0 0x0 0xff 0xff 0xff 0xff 0xff 0xff
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.factory] Factory Response[ReadHoldingRegistersResponse: 3]
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.transaction] Adding transaction 31
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.transaction] Getting transaction 31
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'PROCESSING REPLY' to 'TRANSACTION_COMPLETE'
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.payload] [21359, 27745, 29253, 25703, 25888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21317, 13104, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336, 12339, 11826, 13619, 14080, 0, 0, 0, 14150, 12597, 12341, 13622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 101, 50, 8109, 8109, 65535, 65535, 65533, 2407, 65535, 65535, 65535, 65535, 65535, 65535, 19480, 65535, 50034, 65533, 19495, 65535, 57786, 65534, 9992, 65534, 293, 26324, 0, 5453, 65533, 3626, 65535, 19776, 65535, 32768, 2512, 32768, 32768, 65534, 4, 0, 65535, 65535, 65535]
2022-05-08 10:41:49 DEBUG (MainThread) [pymodbus.payload] [b'\x01%', b'f\xd4']
2022-05-08 10:42:34 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 43759)
2022-05-08 10:42:34 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - TRANSACTION_COMPLETE
2022-05-08 10:42:34 DEBUG (MainThread) [pymodbus.transaction] Running transaction 32
2022-05-08 10:42:34 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x20 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:42:34 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:42:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:42:34 ERROR (MainThread) [custom_components.solaredge_modbus] Error reading inverter at id 1: Modbus Error: [Connection] ModbusTcpClient(192.168.79.56:502): Connection unexpectedly closed 0.000021 seconds into read of 8 bytes without response from unit before it closed connection
2022-05-08 10:43:19 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 55065)
2022-05-08 10:43:19 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - WAITING_FOR_REPLY
2022-05-08 10:43:19 DEBUG (MainThread) [pymodbus.transaction] Running transaction 33
2022-05-08 10:43:19 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x21 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:43:19 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:43:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:43:19 ERROR (MainThread) [custom_components.solaredge_modbus] Error reading inverter at id 1: Modbus Error: [Connection] ModbusTcpClient(192.168.79.56:502): Connection unexpectedly closed 0.000030 seconds into read of 8 bytes without response from unit before it closed connection
2022-05-08 10:44:04 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 51107)
2022-05-08 10:44:04 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - WAITING_FOR_REPLY
2022-05-08 10:44:04 DEBUG (MainThread) [pymodbus.transaction] Running transaction 34
2022-05-08 10:44:04 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x22 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:44:04 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:44:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:44:04 ERROR (MainThread) [custom_components.solaredge_modbus] Error reading inverter at id 1: Modbus Error: [Connection] ModbusTcpClient(192.168.79.56:502): Connection unexpectedly closed 0.000025 seconds into read of 8 bytes without response from unit before it closed connection
2022-05-08 10:44:49 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 46415)
2022-05-08 10:44:49 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - WAITING_FOR_REPLY
2022-05-08 10:44:49 DEBUG (MainThread) [pymodbus.transaction] Running transaction 35
2022-05-08 10:44:49 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x23 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:44:49 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:44:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:44:49 ERROR (MainThread) [custom_components.solaredge_modbus] Error reading inverter at id 1: Modbus Error: [Connection] ModbusTcpClient(192.168.79.56:502): Connection unexpectedly closed 0.000024 seconds into read of 8 bytes without response from unit before it closed connection
2022-05-08 10:45:34 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 47513)
2022-05-08 10:45:34 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - WAITING_FOR_REPLY
2022-05-08 10:45:34 DEBUG (MainThread) [pymodbus.transaction] Running transaction 36
2022-05-08 10:45:34 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x24 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:45:34 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:45:34 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:45:34 ERROR (MainThread) [custom_components.solaredge_modbus] Error reading inverter at id 1: Modbus Error: [Connection] ModbusTcpClient(192.168.79.56:502): Connection unexpectedly closed 0.000036 seconds into read of 8 bytes without response from unit before it closed connection
2022-05-08 10:46:19 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 60525)
2022-05-08 10:46:19 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - WAITING_FOR_REPLY
2022-05-08 10:46:19 DEBUG (MainThread) [pymodbus.transaction] Running transaction 37
2022-05-08 10:46:19 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x25 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:46:19 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:46:19 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:46:19 ERROR (MainThread) [custom_components.solaredge_modbus] Error reading inverter at id 1: Modbus Error: [Connection] ModbusTcpClient(192.168.79.56:502): Connection unexpectedly closed 0.000031 seconds into read of 8 bytes without response from unit before it closed connection
2022-05-08 10:47:04 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 40519)
2022-05-08 10:47:04 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - WAITING_FOR_REPLY
2022-05-08 10:47:04 DEBUG (MainThread) [pymodbus.transaction] Running transaction 38
2022-05-08 10:47:04 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x26 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:47:04 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:47:04 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:47:04 ERROR (MainThread) [custom_components.solaredge_modbus] Error reading inverter at id 1: Modbus Error: [Connection] ModbusTcpClient(192.168.79.56:502): Connection unexpectedly closed 0.000028 seconds into read of 8 bytes without response from unit before it closed connection
2022-05-08 10:47:49 DEBUG (MainThread) [pymodbus.client.sync] Connection to Modbus server established. Socket ('192.168.79.54', 56679)
2022-05-08 10:47:49 DEBUG (MainThread) [pymodbus.transaction] Current transaction state - WAITING_FOR_REPLY
2022-05-08 10:47:49 DEBUG (MainThread) [pymodbus.transaction] Running transaction 39
2022-05-08 10:47:49 DEBUG (MainThread) [pymodbus.transaction] SEND: 0x0 0x27 0x0 0x0 0x0 0x6 0x1 0x3 0x9c 0x44 0x0 0x6c
2022-05-08 10:47:49 DEBUG (MainThread) [pymodbus.client.sync] New Transaction state 'SENDING'
2022-05-08 10:47:49 DEBUG (MainThread) [pymodbus.transaction] Changing transaction state from 'SENDING' to 'WAITING FOR REPLY'
2022-05-08 10:47:49 ERROR (MainThread) [custom_components.solaredge_modbus] Error reading inverter at id 1: Modbus Error: [Connection] ModbusTcpClient(192.168.79.56:502): Connection unexpectedly closed 0.000026 seconds into read of 8 bytes without response from unit before it closed connection
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.
I believe there is also an issue with large amounts of clients, I had to modify the source code to use a POLL selector instead, not sure if that is the same as this issue but wanted to share with the devs. I currently have built a modbus streaming application that seems to handle hundreds of devices and then some, but needed a better way to handle file descriptors as I was getting this error as well not when they were disconnecting however, but when they are breaking fd limits.
@AnonHax0r can you give us an approximate count of clients you are trying to handle ? fd's are OS specific and if it exhausts there is nothing a library can do but throw errors. But if you think pymodbus is not releasing the handles and draining the fd's thats something we will have to debug.
@dhoomakethu I am running around 600 devices or more, and growing. can only run so many with a select call, upgrading the client to use a poll call prevents this error and maintains much better performance. I can share the code snipped I used to make this possible.
Edit:
Simply changing the selector type to PollSelector is all I needed, this allows my application run smoothly 24/7.
I have created parallel workers however, so each device is running upwards of 8 workers depending on how many registers I am trying to put together. I am using it to create a SCADA dashboard reading around 100 registers from all tables. So at around 150 devices i was breaking the fd limit of around 1024. Switching to poll alleviates this issue for me, and seems to provide much better performance on linux.
`class BaseModbusClient(ModbusClientMixin): """ Inteface for a modbus synchronous client. Defined here are all the methods for performing the related request methods. Derived classes simply need to implement the transport methods and set the correct framer. """
def __init__(self, framer, **kwargs):
""" Initialize a client instance
:param framer: The modbus framer implementation to use
"""
self.framer = framer
self.transaction = DictTransactionManager(self, **kwargs)
self._debug = False
self._debugfd = None
self.selector = selectors.PollSelector()
self.broadcast_enable = kwargs.get(
'broadcast_enable', Defaults.broadcast_enable)
# ----------------------------------------------------------------------- #
# Client interface
# ----------------------------------------------------------------------- #
def connect(self):
""" Connect to the modbus remote host
:returns: True if connection succeeded, False otherwise
"""
raise NotImplementedException(
"Method not implemented by derived class")
def close(self):
""" Closes the underlying socket connection
"""
pass
def is_socket_open(self):
"""
Check whether the underlying socket/serial is open or not.
:returns: True if socket/serial is open, False otherwise
"""
raise NotImplementedException(
"is_socket_open() not implemented by {}".format(self.__str__())
)
def send(self, request):
if self.state != ModbusTransactionState.RETRYING:
_logger.debug("New Transaction state 'SENDING'")
self.state = ModbusTransactionState.SENDING
return self._send(request)
def _send(self, request):
""" Sends data on the underlying socket
:param request: The encoded request to send
:return: The number of bytes written
"""
raise NotImplementedException(
"Method not implemented by derived class")
def recv(self, size):
return self._recv(size)
def _recv(self, size):
""" Reads data from the underlying descriptor
:param size: The number of bytes to read
:return: The bytes read
"""
raise NotImplementedException(
"Method not implemented by derived class")
# ----------------------------------------------------------------------- #
# Modbus client methods
# ----------------------------------------------------------------------- #
def execute(self, request=None):
"""
:param request: The request to process
:returns: The result of the request execution
"""
if not self.connect():
raise ConnectionException(
"Failed to connect[%s]" % (self.__str__()))
return self.transaction.execute(request)
# ----------------------------------------------------------------------- #
# The magic methods
# ----------------------------------------------------------------------- #
def __enter__(self):
""" Implement the client with enter block
:returns: The current instance of the client
"""
if not self.connect():
raise ConnectionException(
"Failed to connect[%s]" % (self.__str__()))
return self
def __exit__(self, klass, value, traceback):
""" Implement the client with exit block """
self.close()
def idle_time(self):
"""
Bus Idle Time to initiate next transaction
:return: time stamp
"""
if self.last_frame_end is None or self.silent_interval is None:
return 0
return self.last_frame_end + self.silent_interval
def debug_enabled(self):
"""
Returns a boolean indicating if debug is enabled.
"""
return self._debug
def set_debug(self, debug):
"""
Sets the current debug flag.
"""
self._debug = debug
def trace(self, writeable):
if writeable:
self.set_debug(True)
self._debugfd = writeable
def _dump(self, data, direction):
fd = self._debugfd if self._debugfd else sys.stdout
try:
fd.write(hexlify_packets(data))
except Exception as e:
_logger.debug(hexlify_packets(data))
_logger.exception(e)
def register(self, function):
"""
Registers a function and sub function class with the decoder
:param function: Custom function class to register
:return:
"""
self.framer.decoder.register(function)
def __str__(self):
""" Builds a string representation of the connection
:returns: The string representation
"""
return "Null Transport"`
@AnonHax0r This sounds interesting, can you raise a PR so that we can review and see if it helps other folks as well ? Thanks.
@dhoomakethu of course, give me a little time to clean it up and get it working in the actual repo and I will do that. I have only tested this for ModbusTCP clients. I tried to use Asyncio but performance just wasn't there and faced similar issued with the fd count. I then went to try something synchronous combined with asyncio and came up with what I believe is a pretty good solution. This approach forced me to examine the pymodbus library and I found the select call was the issue. I will gladly share and update the small changes which I think will take the library to the next level for more than just a handful of local clients and allow users to create applications for scada dashboards that can scale a thousand or more devices in real time for large spans of registers. I will try to get the PR pushed this weekend for you to review, but since it uses the selector package you could even pass in a param to the client to decide which selector class the base client uses incase there is a strict requirement for select over poll, but the API exposes the same calls for each class you chose. It appears to be a nice abstraction.
Be aware, that the sync server implementation no longer exist, we only have async implementation and a sync interface (to allow sync applications).
In a very short timeframe the same will happen to the sync clients.
We do not want to add extra complexity by giving the users possibility of selecting selector package, that is something internal.
@janiversen well that is good news! And that is also understandable, it was unfortunately a requirement for me to modify for handling large quantities of connections. I will avoid submitting a PR then, hopefully the future release is able to handle the large sum via async, which I have no doubts it will knowing it will be python 3.7 or newer only. Async is preferred by myself and I have both synchronous and asynchronous modes for my application so switching back will be a breeze. The issue async seemed to be causing me in 2.5.3 and older is that the requests would come back incomplete if I tried to handle multiple requests at once to complete a single 'payload'. There seemed to be a large latency issue and the amount of fd's i could have open at the time along with the packets seeming to struggle to complete. I will be glad to help testing 3.0 with a large scale application once it is ready. Until then I will be patient and leave these comments incase they help someone else trying to maintain thousands of connections.
You misunderstood me, please submit a PR and we will review it, I am not fan of the selector methods (I too do SCADA development), so I would very much like to see changes. The async version could have the same problem, apart from the fact that we do not handle the actual socket.
I just wanted to give you a heads up because you use the sync version, so you could focus better. Our current client async implementation is already a bit faster. Async in 2.5.3 is somewhat "rocky"; which is why the modbus implementation in Home Assistant still uses sync.
Multiple request in a client is something I want to do long term, but suggestions and enhancements (based on dev) are more than welcome.
Dev have come a long way, but if people like you do not test, we will not get the bugs solved. Minimum version is python 3.8
I definitely did misunderstand, i havent collabed much via github so didnt want to step on toes, I appreciate the reply and all the work you guys have done. I will go ahead and submit that PR, and maybe it ends up helping with development in the future! I currently use python3.8 for my project, would love to jump to 3.10 but havent had time to test how it works with the libraries. I will see what other suggestions I can find on the async side as well as I would love to see this project continue to thrive, its been very useful for my development!
Thanks for the kind words.
Do not be afraid to step on toes, most maintainers have very thick skin 🥲 . The difference is that people who only complain are a real PITA, while those who help out are highly valued, please do not forget this is open source so all helping hands are welcome.
I have invested quite a lot of time the last year so for sure I want this project to grow, but it is hard to do alone, another reason to help out.
I spent a bunch of time with another user of my Home Assistant integration trying to figure out a similar issue, and the only thing we could come up with was that it was wifi related with their inverter, and that after the problem popped up restarting Home Assistant would fix the issue. My inverter is hardwired so I could never duplicate it. I'm also still too new to Python to effectively debug anything like the fd handle exhaustion idea.
Maybe worth a read in case anyone else has an idea: ModbusTcpClient(redacted:1502): Connection unexpectedly closed
Be aware that it uses version 2.5.3 just like home assistant and we have since made a number of changes in pymodbus which should solve the issue.
Home assistant will be updated when we release 3.0.0