PySide6.QtSerialBus.QModbusRtuSerialServer¶
- class QModbusRtuSerialServer¶
- The - QModbusRtuSerialServerclass represents a Modbus server that uses a serial port for its communication with the Modbus client. More…- Synopsis¶- Methods¶- def - __init__()
 - Note - This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE - Detailed Description¶- Communication via Modbus requires the interaction between a single Modbus client instance and multiple Modbus server. This class provides the Modbus server implementation via a serial port. - Since multiple Modbus server instances can interact with a Modbus client at the same time (using a serial bus), servers are identified by their - serverAddress().- Constructs a - QModbusRtuSerialServerwith the specified- parent. The- serverAddresspreset is- 1.- interFrameDelay()¶
- Return type:
- int 
 
 - Returns the amount of microseconds for the silent interval between two consecutive Modbus messages. - See also - setInterFrameDelay(microseconds)¶
- Parameters:
- microseconds – int 
 
 - Sets the amount of - microsecondsfor the silent interval between two consecutive Modbus messages. By default, the class implementation will use a pre-calculated value according to the Modbus specification. A active or running connection is not affected by such delay changes.- Note - If - microsecondsis set to -1 or- microsecondsis less than the pre-calculated delay then this pre-calculated value is used as frame delay.- See also