创建串口
串口连接客户端并向服务器发送消息
client.pro
#-------------------------------------------------
#
# Project created by QtCreator 2024-07-02T14:11:20
#
#-------------------------------------------------
QT += core gui network
QT += core gui serialport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = client
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += main.cpp\
widget.cpp
HEADERS += widget.h
FORMS += widget.ui
widget.h
#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
#include <QTcpSocket>
#include <QSerialPort>
namespace Ui {
class Widget;
}
class Widget : public QWidget
{
Q_OBJECT
public:
explicit Widget(QWidget *parent = 0);
~Widget();
void InitClient();
void InitWidget();
private slots:
void on_connect_bt_clicked();
void OnReadData();
void OnReadyData1();
void on_open_bt_clicked();
private:
Ui::Widget *ui;
QTcpSocket *m_pSocket;
QSerialPort *m_pSerial;
};
#endif // WIDGET_H
main.cpp
#include "widget.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.InitClient();
w.InitWidget();
w.show();
return a.exec();
}
widget.cpp
#include "widget.h"
#include "ui_widget.h"
#include <QDebug>
#include <QHostAddress>
#include <QSerialPort>
#include <QSerialPortInfo>
Widget::Widget(QWidget *parent) :
QWidget(parent),
ui(new Ui::Widget)
{
ui->setupUi(this);
m_pSocket = NULL;
m_pSerial = NULL;
}
Widget::~Widget()
{
delete ui;
}
void Widget::InitClient()
{
qDebug() << "Widget::InitClient() enter";
if (NULL == m_pSocket)
{
m_pSocket = new QTcpSocket(this);
connect(m_pSocket, SIGNAL(readyRead()), this, SLOT(OnReadData()));
}
qDebug() << "Widget::InitClient() exit";
}
void Widget::on_connect_bt_clicked()
{
qDebug() << "Widget::on_connect_bt_clicked() enter";
QString strIP = ui->ip_edit->text();
QString strPort = ui->port_edit->text();
qDebug() << strIP << " " << strPort;
if (strIP.length() == 0 || strPort.length() == 0)
{
qDebug() << "input error";
return;
}
if (NULL == m_pSocket)
{
qDebug() << "socket error";
return;
}
m_pSocket->connectToHost(QHostAddress("127.0.0.1"), strPort.toShort());
if (m_pSocket->waitForConnected(3000))
{
qDebug() << "connect ok";
}
else
{
qDebug() << "connect error";
}
qDebug() << "Widget::on_connect_bt_clicked() exit";
}
void Widget::OnReadData()
{
QByteArray arr = m_pSocket->readAll();
qDebug() << arr;
}
void Widget::InitWidget()
{
qDebug() << "Widget::InitWidget() enter";
if (NULL == m_pSerial)
{
m_pSerial = new QSerialPort(this);
connect(m_pSerial, SIGNAL(readyRead()), this, SLOT(OnReadyData1()));
}
qDebug() << "Widget::InitWidget() exit";
}
void Widget::OnReadyData1() //串口数据就绪槽函数,当串口有数据可读时,该函数会被调用
{
qDebug() << "Widget::OnReadyData1() enter";
QByteArray strData = m_pSerial->r