Python script for RTU Modbus Slave

2019-07-25 09:30发布

问题:

I am working on a automation test case for a system and need a automated modbus input device.

My use case here is to implement a Raspberry pi based RTU modbus slave and connected to a modbus master.

I want this raspberry pi based slave to populate and send a response to master when ever master requests for a register value.

I am new to this protocol and environment, I am not able to find any python script or libraries where we have a modbus slave client.

I came across this below Serial python code and I could sucessfully decode modbus requests from the Master,

import serial
import time

receiver = serial.Serial(     
     port='/dev/ttyUSB0',        
     baudrate = 115200,
     parity=serial.PARITY_NONE,
     stopbits=serial.STOPBITS_ONE,
     bytesize=serial.EIGHTBITS,
     timeout=1
     )

while 1:
      x = receiver.readline()
      print x

Problem I am facing here is this block of code just prints a seris of serial bits and I am not sure how to decode modbus packets from these...

OUTPUT: b'\x1e\x03\x00\x19\x00\x01W\xa2\x1e\x10\x00\x0f\x00\x01\x02\x03 +\xb7\x1e\x03\x00\n' b'\x00\x02\xe6f\x1e\x03\x00\t\x00\x01Vg\x1e\x10\x00\x10\x00\x01\x02\x01,(\xbd\x1e\x03\x00\n' b'\x00\x02\xe6f\x1e\x03\x00\t\x00\x01Vg\x1e\x10\x00\x11\x00\x01\x02\x03 (\t\x1e\x03\x00\n' b'\x00\x02\xe6f\x1e\x03\x00\t\x00\x01Vg\x1e\x10\x00\x12\x00\x01\x02\x01,)_\x1e\x03\x00\n' b'\x00\x02\xe6f\x1e\x03\x00\t\x00\x01Vg\x1e\x03\x00\n' b'\x00\x02\xe6f\x1e\x03\x00\t\x00\x01Vg\x1e\x03\x00\n'

Can anyone please point me to the right direction on what to look for or is there similar script implemented.

Thanks in advance.

回答1:

Pymodbus library has several examples for server/slave/responder (usually devices are a server/slave) and master/client/requester. The procedure in the Modbus protocol is such that the server/slave must give a request from the master/client side, then response to it.


Here is a Modbus RTU client (master) snippet code to read from a Modbus RTU server (slave) or a Modbus device by the pymodbus library:

from pymodbus.client.sync import ModbusSerialClient

client = ModbusSerialClient(
    method='rtu',
    port='/dev/ttyUSB0',
    baudrate=115200,
    timeout=3,
    parity='N',
    stopbits=1,
    bytesize=8
)

if client.connect():  # Trying for connect to Modbus Server/Slave
    '''Reading from a holding register with the below content.'''
    res = client.read_holding_registers(address=1, count=1, unit=1)

    '''Reading from a discrete register with the below content.'''
    # res = client.read_discrete_inputs(address=1, count=1, unit=1)

    if not res.isError():
        print(res.registers)
    else:
        print(res)

else:
    print('Cannot connect to the Modbus Server/Slave')

  • Here is a Pymodbus Asynchronous Server Example.
  • And here is a Pymodbus Synchronous Server Example.