允许访问串行端口的 C++ 类列表。 更多...
QSerialPort | 提供访问串行端口的函数 |
QSerialPortInfo | 提供有关现有串行端口的信息 |
要使用 QSerialPort 在应用程序,添加以下 include 语句:
#include <QSerialPort>
For QSerialPortInfo ,使用以下 include 语句:
#include <QSerialPortInfo>
To use the module with cmake, use the
find_package()
命令去定位所需模块组件,在
Qt6
包:
find_package(Qt6 REQUIRED COMPONENTS SerialPort)
target_link_libraries(mytarget PRIVATE Qt6::SerialPort)
要采用 qmake 构建模块,将模块添加作为值对于
QT
变量在工程的 .pro 文件:
QT += serialport