class QModbusRequest#

QModbusRequest is a container class containing the function code and payload that is stored inside a Modbus ADU. More

Inheritance diagram of PySide6.QtSerialBus.QModbusRequest

Synopsis#

Methods#

Static functions#

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#

A Modbus request usually consists of a single byte describing the FunctionCode and N bytes of payload

A typical Modbus request can looks like this:

QModbusRequest request(QModbusRequest::WriteMultipleCoils,
    QByteArray::fromHex("0013000a02cd01"));

Note

When using the constructor taking the QByteArray, please make sure to convert the containing data to big-endian byte order before creating the request.

The same request can be created like this, if the values are known at compile time:

quint16 startAddress = 19, numberOfCoils = 10;
quint8 payloadInBytes = 2, outputHigh = 0xcd, outputLow = 0x01;
QModbusRequest request(QModbusRequest::WriteMultipleCoils, startAddress, numberOfCoils,
    payloadInBytes, outputHigh, outputLow);
__init__()#

Constructs an invalid QModbusRequest .

__init__(code[, newData=QByteArray()])
Parameters:

Constructs a QModbusResponse with function code set to code and payload set to data. The data is expected to be stored in big-endian byte order already.

__init__(pdu)
Parameters:

pduQModbusPdu

Constructs a copy of pdu.

static calculateDataSize(pdu)#
Parameters:

pduQModbusRequest

Return type:

int

Calculates the expected data size for request based on the request’s function code and data. Returns the full size of the request’s data part; -1 if the size could not be properly calculated.

See also

minimumDataSize registerDataSizeCalculator

static minimumDataSize(pdu)#
Parameters:

pduQModbusRequest

Return type:

int

Returns the expected minimum data size for request based on the request’s function code; -1 if the function code is not known.