代码拉取完成,页面将自动刷新
#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;//串口对象
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。