Qt Serial Bus C++ Classes

Provides classes to read and write serial bus data. More...

This module was introduced in Qt 5.8.

Classes

QModbusDeviceIdentification

Container class representing the physical and functional description of a Modbus server

Detailed Description

Provides classes to access various serial buses.

For C++ projects include the header appropriate for the current use case, for example applications using the CAN bus device may use

 #include <QCanBusDevice>

To use the module with CMake, use the find_package() command to locate the needed module components in the Qt6 package:

 find_package(Qt6 COMPONENTS SerialBus REQUIRED)
 target_link_libraries(mytarget PRIVATE Qt6::SerialBus)

To use the module for building with qmake, add the module as a value of the QT variable in the project's .pro file:

 QT += serialbus

See more in the Qt Serial Bus Overview.