加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ComAistant.h 1.90 KB
一键复制 编辑 原始数据 按行查看 历史
lemonade5566 提交于 2024-07-25 10:47 . Initial Commit
#pragma once
#include <QtWidgets/QMainWindow>
#include <QtWidgets/QPlainTextEdit>
#include <QtSerialPort/QSerialPort>
#include <QtSerialPort/QSerialPortInfo>
#include <qpushbutton.h>
#include <qcombobox.h>
#include <qlabel.h>
#include <qcheckbox.h>
#include <qradiobutton.h>
#include <qdebug.h>
#include <QEvent>
#include <qmessagebox.h>
#include <qtimer.h>
#include "ui_ComAistant.h"
class ComAistant : public QMainWindow
{
Q_OBJECT
public:
ComAistant(QWidget *parent = nullptr);
~ComAistant();
void userInterfaceInit(void);
void signalConnectSlot(void);
void clearSendArea(void);
void clearRecvArea(void);
void openSerialPort(void);
void closeSerialPort(void);
void sendModeStateChanged(int state);
void recvModeStateChanged(int state);
void setupSerialPort(void);
void searchSerialPort(void);
void timerEvent(QTimerEvent* e);
void sendData(void);
private:
QPlainTextEdit *sendArea;//发送区
QPlainTextEdit *recvArea;//接收区
QPushButton *sendButton;//发送按钮
QPushButton *clearRecvAeraButton;//清空按钮
QPushButton *clearSendAeraButton;//清空按钮
QPushButton *openButton;//打开串口按钮
QPushButton *closeButton;//关闭串口按钮
QComboBox* serialNum;//串口号
QComboBox* baudRate;//波特率
QComboBox* dataBits;//数据位
QComboBox* parity;//校验位
QComboBox* stopBits;//停止位
QComboBox* flowControl;//流控制
QLabel* serialNumLabel;//串口号标签
QLabel* baudRateLabel;//波特率标签
QLabel* dataBitsLabel;//数据位标签
QLabel* parityLabel;//校验位标签
QLabel* stopBitsLabel;//停止位标签
QLabel* flowControlLabel;//流控制标签
QLabel* sendModeLabel;//发送模式标签
QLabel* recvModeLabel;//接收模式标签
QCheckBox* sendMode_ASCII;//发送模式
QCheckBox* sendMode_HEX;//接收模式
QCheckBox* recvMode_ASCII;//发送模式
QCheckBox* recvMode_HEX;//接收模式
QSerialPort* serialPort;//串口对象
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化