其他分享
首页 > 其他分享> > Qt 串口通信软件开发教程

Qt 串口通信软件开发教程

作者:互联网

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

     界面如下:

     先看看类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.

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

标签:QSerialPortInfo,Qt,QSerialPort,通信软件,串口,serial,port
来源: https://blog.51cto.com/u_12570763/2855800