Qt 串口通信软件开发教程

       Qt5.7已经封装了关于串口操作的类QSerialPort,QSerialPortInfo等,不需要再使用第三方串口类。串口应用程序的开发,包括查找串口,打开串口,发送数据,读取数据等。

     界面如下:

Qt 串口通信软件开发教程

     先看看类QSerialPortInfo, Qt的解释如下:   

Provides information about existing serial ports.

Use the static functions to generate a list of QSerialPortInfo objects. Each QSerialPortInfo object in the list represents a single serial port and can be queried for the port name, system location, description, and manufacturer. The QSerialPortInfo class can also be used as an input parameter for the setPort() method of the QSerialPort class.

    提供现有的串行端口的信息。

上一篇:Qt 串口和线程的简单结合(通过子线程操作串口、movetothread)


下一篇:QT QSerialPort 编写串口通讯案例 设计一些基础的ui界面