I am trying to read holding registers from a modbus server with pyModbus but I am having issues with the response from the server.
To test that my connection is working, I tried Reading and writing with Modbus-poll and QModMaster and everything is working well.
Could you please let me know what I can do to fix this issue ? Thanks
This is my code, tested on windows 10 and vscode:
python Version : 3.12.0
pymodbus Version : 3.5.2
import time
from pymodbus.client import ModbusTcpClient
import logging
logging.basicConfig()
log = logging.getLogger()
log.setLevel(logging.DEBUG)
# Define the Modbus server's IP address and port
server_ip = "10.10.10.10"
server_port = 502
# Create a Modbus client
client = ModbusTcpClient(host=server_ip, port=server_port, timeout=10)
#[enter image description here](https://i.stack.imgur.com/2g6lI.png)
def read_registers(startAddress, count):
# Connect to the Modbus server
while True:
client.connect()
try:
if client.connected:
print("client connected")
# Read holding registers
response = client.read_holding_registers(
address=startAddress, count=count, slave=1
)
else:
print("client not connected")
if not response.isError():
data = response.registers
print(f"Read data: {data}")
else:
# Do stuff for error handling.
print("Error message: {}".format(response))
except Exception as e:
print(f"Error: {str(e)}")
finally:
# Close the Modbus client
print("closing client")
client.close()
time.sleep(5)
if __name__ == "__main__":
read_registers(1000, 5)
I also tried using slave=1 and unit=1 but none of that worked.
This is the full log :
DEBUG:pymodbus.logging:Connection to Modbus server established. Socket ('10.10.10.100', 51868)
client connected
DEBUG:pymodbus.logging:Current transaction state - TRANSACTION_COMPLETE
DEBUG:pymodbus.logging:Running transaction 55
DEBUG:pymodbus.logging:SEND: 0x0 0x37 0x0 0x0 0x0 0x6 0x1 0x3 0x3 0xe8 0x0 0x5
DEBUG:pymodbus.logging:New Transaction state "SENDING"
DEBUG:pymodbus.logging:Changing transaction state from "SENDING" to "WAITING FOR REPLY"
DEBUG:pymodbus.logging:Changing transaction state from "WAITING FOR REPLY" to "PROCESSING REPLY"
DEBUG:pymodbus.logging:RECV: 0x8d 0xce 0xd0 0xbd 0x0 0xc2 0x1 0xa5 0x1a
DEBUG:pymodbus.logging:Processing: 0x8d 0xce 0xd0 0xbd 0x0 0xc2 0x1 0xa5 0x1a
DEBUG:pymodbus.logging:Frame check failed, ignoring!!
DEBUG:pymodbus.logging:Resetting frame - Current Frame in buffer - 0x8d 0xce 0xd0 0xbd 0x0 0xc2 0x1 0xa5 0x1a
DEBUG:pymodbus.logging:Getting transaction 55
DEBUG:pymodbus.logging:Changing transaction state from "PROCESSING REPLY" to "TRANSACTION_COMPLETE"
Error message: Modbus Error: [Input/Output] No Response received from the remote slave/Unable to decode response
closing client```
and This is the result using QModMaster for checking if my server is working.
I also tried to see the packets with wireshark and I can see that my request is sent to the server and right after that the request is reset, not sure why.
I'm also working in the same areas. And I have used the Pymodbus library as follows;
Hope this will help you!