Кусок документации продукта
Socomec products implement functions :
- 3 : to read n Words ( Maximum 125 words )
- 6 : to write 1 word
- 16 : to write n Word
Dec. Address Hex. Address Words count Description Unit Data Type
50770 C652 2 Total Positive Active Energy (no resetable) : Ea+ kWh U32
Есть кусок кода
from pymodbus.client.sync import ModbusSerialClient as ModbusClient
client = ModbusClient(method = "rtu", port="COM1",stopbits = 1, bytesize = 8, parity = 'N',baudrate= 9600)
client.connect()
request = client.read_holding_registers(address=50532,count=2,unit=6)
print request.getRegister(1)
client.close()
В ответ получаю невразумительное число
Вопрос, можно ли посмотреть в сыром виде что уходит на сервер и что с него приходит ?