串口调试助手--Qt
2019-08-26 05:36:41来源:博客园 阅读 ()
串口调试助手--Qt
串口调试助手----------该程序使用Qt框架,C ++语言编译而成
项目文件介绍:
main.cpp 该文件为该程序的入口程序
mainwindow.h 该文件为该程序的主要声明部分
mainwindow.cpp 该文件为该程序的主要定义部分
mainwindow.ui 该文件为该程序的ui界面设计
界面.png 界面的显示效果
该文件中获取串口是通过读取Windows系统下的注册表中的信息得到的, - 使用Qt中的定时器来每个3s读取一次注册表
串口通信方面:通过使用Qt的封装的QSerialPort来实现
main.cpp
#include "mainwindow.h" #include <QApplication> int main(int argc, char *argv[]) { QApplication a(argc, argv); MainWindow w; w.show(); return a.exec(); }
mainwindow.h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> #include <QSerialPort> #include <QTimer> namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = nullptr); ~MainWindow(); /* * 功能:获取电脑中串口的端口 * 参数:无 * 返回值:无 */ void Get_Serial_Port(void); /* * 功能:当串口有数据的时候执行 * 参数:无 * 返回值:无 */ void readData(void); /* * 功能:每个3s执行的任务 * 参数:无 * 返回值:无 */ void myThread(void); private slots: /* * 功能:点击pushButton按钮功能 * 参数:无 * 返回值:无 */ void on_pushButton_clicked(); /* * 功能:点击清空按钮功能,清空显示区的显示 * 参数:无 * 返回值:无 */ void on_pushButton_2_clicked(); void on_pushButton_3_clicked(); void on_pushButton_4_clicked(); void on_pushButton_5_clicked(); private: Ui::MainWindow *ui; //串口类指针 QSerialPort *Serial; //时间类指针 QTimer *time; }; #endif // MAINWINDOW_H
mainwindow.cpp
#include "mainwindow.h" #include "ui_mainwindow.h" #include "windows.h" #include "QVector" #include "QDebug" #include "stdio.h" #include "QMessageBox" #include <stdlib.h> #define MAX_KEY_LENGTH 255 #define MAX_VALUE_NAME 16383 /* * 功能:读取注册表下的子项 * 参数:hkey:注册表的根 * lpSubkey:注册表根下的路径 * retArray:返回要查找的路径下的值的数组 * 返回值:无 */ static void Get_Regedit(HKEY hkey,LPCSTR lpSubKey,QVector<QString> &retArray); MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); //时间类初始化 time = new QTimer(this); connect(time,&QTimer::timeout,this,&MainWindow::myThread); time->start(3000); //状态栏显示 ui->statusBar->showMessage("程序运行中..."); //初始化串口的显示 this->Get_Serial_Port(); QStringList temp; //波特率的显示 temp << "9600" << "4800" << "19200" << "38400" << "57600" << "115200"; ui->comboBox_2->addItems(temp); //数据位的显示 temp.clear(); temp << "8" << "5" << "6" << "7"; ui->comboBox_3->addItems(temp); //奇偶检验位的显示 temp.clear(); temp << "0" << "1" << "2"; ui->comboBox_4->addItems(temp); //停止位的显示 temp.clear(); temp << "1" << "1.5" << "2"; ui->comboBox_5->addItems(temp); this->Serial = new QSerialPort(nullptr); } MainWindow::~MainWindow() { delete ui; } /* * 功能:获取电脑中串口的端口 * 参数:无 * 返回值:无 */ void MainWindow::Get_Serial_Port() { QVector<QString> retArray; ui->comboBox->clear(); Get_Regedit(HKEY_LOCAL_MACHINE,\ "HARDWARE\\DEVICEMAP\\SERIALCOMM",\ retArray); qDebug() << retArray.size(); QVector<QString>::iterator iter; for (iter=retArray.begin();iter!=retArray.end();iter++) { qDebug() << *iter << "\0"; ui->comboBox->addItem(*iter); } } /* * 功能:点击pushButton按钮功能,打开串口 * 参数:无 * 返回值:无 */ void MainWindow::on_pushButton_clicked() { if(!Serial->isOpen()) { qDebug() << ui->comboBox->currentText(); //设置串口的端口名称 Serial->setPortName(ui->comboBox->currentText()); //toInt:将字符串转换为数字 //设置串口的波特率 Serial->setBaudRate((ui->comboBox_2->currentText()).toInt(nullptr,10)); //设置串口的数据位 Serial->setDataBits((QSerialPort::DataBits((ui->comboBox_3->currentText()).toInt(nullptr,10)))); //设置串口的奇偶校验位 Serial->setParity(QSerialPort::Parity((ui->comboBox_4->currentText()).toInt(nullptr,10))); //设置串口的停止位 Serial->setStopBits(QSerialPort::StopBits((ui->comboBox_5->currentText()).toInt(nullptr,10))); //设置串口的流 Serial->setFlowControl(QSerialPort::NoFlowControl); BOOL isSerial = Serial->open(QIODevice::ReadWrite); if(!isSerial) { qDebug() << "串口打开错误!"; return; } //创建一个信号与槽,使得串口有数据可以读取的时候可以执行readData()函数 connect(Serial,&QSerialPort::readyRead,this,&MainWindow::readData); ui->pushButton->setText("已启动"); } else { ui->pushButton->setText("启动"); Serial->close(); } } /* * 功能:读取注册表下的子项 * 参数:hkey:注册表的根 * lpSubkey:注册表根下的路径 * retArray:返回要查找的路径下的值的数组 * 返回值:无 */ static void Get_Regedit(HKEY hkey,LPCSTR lpSubKey,QVector<QString> &retArray) { HKEY phkey = nullptr; BOOL isSuccess = false; /* * 功能:打开注册表,返回值为是否打开成功 */ isSuccess = RegOpenKeyA(hkey,lpSubKey,&phkey); if(isSuccess != ERROR_SUCCESS) { qDebug() << "注册表打开失败!"; return; } qDebug() << "注册表打开成功!"; /* * 功能:读取注册表下的子项 */ DWORD i =0; LSTATUS retCode = ERROR_SUCCESS; CHAR achValue[MAX_VALUE_NAME]; DWORD cchValue = MAX_VALUE_NAME; BYTE Data[MAX_VALUE_NAME]; DWORD cbData = MAX_VALUE_NAME; do { cchValue = MAX_VALUE_NAME; cbData = MAX_VALUE_NAME; achValue[0] = '\0'; Data[0] = '\0'; QString temp = ""; retCode = RegEnumValueA(phkey, i,achValue,&cchValue,nullptr,nullptr,Data,&cbData); if (retCode == ERROR_SUCCESS && achValue[0] != '\0') { qDebug() << i++ << achValue << " "; BYTE j = 0; while(Data[j] != '\0') temp += (CHAR)(Data[j++]); qDebug() << temp; retArray.append(temp); } }while(achValue[0] != '\0'); /* * 功能:关闭注册表,返回值为是否打开成功 */ isSuccess = RegCloseKey(phkey); if(isSuccess != ERROR_SUCCESS) { qDebug() << "注册表关闭失败!"; return; } qDebug() << "注册表关闭成功!"; return; } /* * 功能:点击清空按钮功能,清空显示区的显示 * 参数:无 * 返回值:无 */ void MainWindow::on_pushButton_2_clicked() { ui->textBrowser->setText(""); } /* * 功能:当串口有数据的时候执行,在显示区域显示 * 串口接受到的值 * 参数:无 * 返回值:无 */ void MainWindow::readData(void) { //是否选择了该按钮,选择以16进制进行输出 if(ui->radioButton->isChecked()) { QByteArray temp = Serial->readAll().toHex(); for(int i = 0;i < temp.length();++i) { //在16进制开始加入"0x" if(i % 2 == 0) ui->textBrowser->insertPlainText("0x"); ui->textBrowser->insertPlainText((QString)temp.at(i)); //在16进制结束加上空格" " if(i % 2 == 1) ui->textBrowser->insertPlainText(" "); } } //没有选择则按照ASCII码输出 else ui->textBrowser->insertPlainText(Serial->readAll()); ui->textBrowser->moveCursor(QTextCursor::End); } /* * 功能:向串口中发送数据 * 参数:无 * 返回值:无 */ void MainWindow::on_pushButton_3_clicked() { //判断串口是否处于打开状态 if(Serial->isOpen()) { QByteArray temp = ui->textEdit->toPlainText().toUtf8(); qDebug() << temp; Serial->write(temp); } else { //串口没有连接的时候发送数据就会出错 QMessageBox messageBox(QMessageBox::Icon(2),"警告","串口未连接",QMessageBox::Yes,nullptr); messageBox.exec(); } } /* * 功能:清空发送区 * 参数:无 * 返回值:无 */ void MainWindow::on_pushButton_4_clicked() { ui->textEdit->clear(); } /* * 功能:退出程序 * 参数:无 * 返回值:无 */ void MainWindow::on_pushButton_5_clicked() { if(Serial->isOpen()) Serial->close(); this->close(); } /* * 功能:每个3s执行的任务,判断端口和串口是否打开 * 参数:无 * 返回值:无 */ void MainWindow::myThread() { qDebug() << "线程OK "; if(Serial->isReadable()) ui->pushButton->setText("已启动"); else ui->pushButton->setText("启动"); this->Get_Serial_Port(); }
mainwindow.ui
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>MainWindow</class> <widget class="QMainWindow" name="MainWindow"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>768</width> <height>500</height> </rect> </property> <property name="minimumSize"> <size> <width>768</width> <height>500</height> </size> </property> <property name="maximumSize"> <size> <width>768</width> <height>500</height> </size> </property> <property name="windowTitle"> <string>串口助手</string> </property> <widget class="QWidget" name="centralWidget"> <widget class="QPushButton" name="pushButton"> <property name="geometry"> <rect> <x>20</x> <y>230</y> <width>93</width> <height>28</height> </rect> </property> <property name="text"> <string>启动</string> </property> </widget> <widget class="QPushButton" name="pushButton_2"> <property name="geometry"> <rect> <x>120</x> <y>290</y> <width>93</width> <height>28</height> </rect> </property> <property name="text"> <string>清空显示</string> </property> </widget> <widget class="QComboBox" name="comboBox"> <property name="geometry"> <rect> <x>120</x> <y>50</y> <width>87</width> <height>22</height> </rect> </property> </widget> <widget class="QComboBox" name="comboBox_2"> <property name="geometry"> <rect> <x>120</x> <y>80</y> <width>87</width> <height>22</height> </rect> </property> </widget> <widget class="QComboBox" name="comboBox_3"> <property name="geometry"> <rect> <x>120</x> <y>110</y> <width>87</width> <height>22</height> </rect> </property> </widget> <widget class="QComboBox" name="comboBox_4"> <property name="geometry"> <rect> <x>120</x> <y>140</y> <width>87</width> <height>22</height> </rect> </property> </widget> <widget class="QComboBox" name="comboBox_5"> <property name="geometry"> <rect> <x>120</x> <y>170</y> <width>87</width> <height>22</height> </rect> </property> </widget> <widget class="QRadioButton" name="radioButton"> <property name="geometry"> <rect> <x>0</x> <y>295</y> <width>115</width> <height>19</height> </rect> </property> <property name="text"> <string>以16进制输出</string> </property> </widget> <widget class="QPushButton" name="pushButton_3"> <property name="geometry"> <rect> <x>120</x> <y>360</y> <width>93</width> <height>28</height> </rect> </property> <property name="text"> <string>发送</string> </property> </widget> <widget class="QGroupBox" name="groupBox"> <property name="geometry"> <rect> <x>230</x> <y>4</y> <width>551</width> <height>331</height> </rect> </property> <property name="title"> <string>接受显示区</string> </property> <widget class="QTextBrowser" name="textBrowser"> <property name="geometry"> <rect> <x>10</x> <y>20</y> <width>521</width> <height>301</height> </rect> </property> </widget> </widget> <widget class="QGroupBox" name="groupBox_2"> <property name="geometry"> <rect> <x>230</x> <y>340</y> <width>541</width> <height>121</height> </rect> </property> <property name="title"> <string>发送显示区</string> </property> <widget class="QTextEdit" name="textEdit"> <property name="geometry"> <rect> <x>10</x> <y>20</y> <width>521</width> <height>91</height> </rect> </property> </widget> </widget> <widget class="QPushButton" name="pushButton_4"> <property name="geometry"> <rect> <x>120</x> <y>400</y> <width>93</width> <height>28</height> </rect> </property> <property name="text"> <string>清空发送</string> </property> </widget> <widget class="QLabel" name="label"> <property name="geometry"> <rect> <x>20</x> <y>50</y> <width>71</width> <height>21</height> </rect> </property> <property name="text"> <string>串口端口</string> </property> </widget> <widget class="QLabel" name="label_2"> <property name="geometry"> <rect> <x>20</x> <y>83</y> <width>80</width> <height>15</height> </rect> </property> <property name="text"> <string>串口波特率</string> </property> </widget> <widget class="QLabel" name="label_3"> <property name="geometry"> <rect> <x>20</x> <y>113</y> <width>80</width> <height>15</height> </rect> </property> <property name="text"> <string>串口数据位</string> </property> </widget> <widget class="QLabel" name="label_4"> <property name="geometry"> <rect> <x>20</x> <y>143</y> <width>80</width> <height>15</height> </rect> </property> <property name="text"> <string>串口校验位</string> </property> </widget> <widget class="QLabel" name="label_5"> <property name="geometry"> <rect> <x>20</x> <y>173</y> <width>80</width> <height>15</height> </rect> </property> <property name="text"> <string>串口停止位</string> </property> </widget> <widget class="QLabel" name="label_6"> <property name="geometry"> <rect> <x>25</x> <y>5</y> <width>191</width> <height>41</height> </rect> </property> <property name="font"> <font> <family>楷体</family> <pointsize>12</pointsize> </font> </property> <property name="text"> <string>欢迎使用调试助手</string> </property> </widget> <widget class="QPushButton" name="pushButton_5"> <property name="geometry"> <rect> <x>120</x> <y>230</y> <width>93</width> <height>28</height> </rect> </property> <property name="text"> <string>退出</string> </property> </widget> </widget> <widget class="QStatusBar" name="statusBar"/> <widget class="QMenuBar" name="menuBar"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>768</width> <height>26</height> </rect> </property> <widget class="QMenu" name="menu"> <property name="title"> <string>菜单</string> </property> <addaction name="separator"/> <addaction name="actiondsa"/> </widget> <widget class="QMenu" name="menu_2"> <property name="title"> <string>帮助</string> </property> </widget> <addaction name="menu"/> <addaction name="menu_2"/> </widget> <widget class="QToolBar" name="toolBar"> <property name="windowTitle"> <string>toolBar</string> </property> <attribute name="toolBarArea"> <enum>TopToolBarArea</enum> </attribute> <attribute name="toolBarBreak"> <bool>false</bool> </attribute> </widget> <action name="actiondsa"> <property name="text"> <string>退出</string> </property> </action> </widget> <layoutdefault spacing="6" margin="11"/> <resources/> <connections/> </ui>
界面的实际效果为:
原文链接:https://www.cnblogs.com/ghost-98210/p/11370710.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- WDK驱动调试问题点滴 2020-04-21
- 使用微信助手搭建微信返利机器人 2019-09-23
- stm32F103片上串口USART1通信实验 2019-09-17
- 49.Qt-网络编程之QTCPSocket和QTCPServer(实现简易网络调试 2019-08-16
- # VsCode 配置C++调试运行 2019-08-16
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash