3 Star 0 Fork 0

CyberInnova/SmartVendingMachinesUserInterface

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Serial_Assist.hpp 990 Bytes
一键复制 编辑 原始数据 按行查看 历史
David Hu 提交于 2023-06-25 11:33 . first commit
#ifndef SERIAL_ASSIST_HPP
#define SERIAL_ASSIST_HPP
#include <QObject>
#include <QSerialPort>
#include <QSerialPortInfo>
#include <QList>
#include <QTimer>
#include <QTime>
#include <QApplication>
#include <QEventLoop>
class Serial_Assist : public QObject
{
Q_OBJECT
public:
explicit Serial_Assist(QObject *parent = nullptr);
// 延时函数
void Sleep(unsigned int msec);
// 给串口发送消息
bool Send_Data(QByteArray send_data);
// 接收串口回应
QByteArray Recv_Data(void);
// 建立串口连接
void Build_Connection(void);
// 16进制转字符
char ConvertHexChar(char ch);
// 字符串转16进制
QByteArray QString2Hex(QString str);
// 用户支付成功
void Pay_Success();
signals:
private:
QSerialPort *serial_assist;
// 出货门开
QString mesg_open = "ff 01 05 02 00 00 00 aa bb";
// 出货门关
QString mesg_close= "ff 01 05 02 01 01 01 aa bb";
};
#endif // SERIAL_ASSIST_HPP
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/CyberInnova/SmartVendingMachinesUserInterface.git
[email protected]:CyberInnova/SmartVendingMachinesUserInterface.git
CyberInnova
SmartVendingMachinesUserInterface
SmartVendingMachinesUserInterface
master

搜索帮助