QT 串口上位機

来源:https://www.cnblogs.com/xgj-0817/p/18028555
-Advertisement-
Play Games

迪文屏TA指令開發_開機動畫 1. 新建項目 新建一個空白文件夾,點擊新建工程之後選擇新建文件夾地址即可 創建完成之後,文件夾結構如下: 2. 導入背景圖片素材 說是設置開機動畫,實際上是通過多個背景圖片的連續播放實現的動畫效果 點擊加號鍵,可以直接選中所有的背景圖片素材進行一鍵導入 3. 設置控制項 ...


CMakeLists.txt

cmake_minimum_required(VERSION 3.5)

project(SerialPort VERSION 0.1 LANGUAGES CXX)

set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Widgets SerialPort)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets SerialPort)

set(PROJECT_SOURCES
        main.cpp
        mainwindow.cpp
        mainwindow.h
        mainwindow.ui
)

if(${QT_VERSION_MAJOR} GREATER_EQUAL 6)
    qt_add_executable(SerialPort
        MANUAL_FINALIZATION
        ${PROJECT_SOURCES}
    )
# Define target properties for Android with Qt 6 as:
#    set_property(TARGET SerialPort APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR
#                 ${CMAKE_CURRENT_SOURCE_DIR}/android)
# For more information, see https://doc.qt.io/qt-6/qt-add-executable.html#target-creation
else()
    if(ANDROID)
        add_library(SerialPort SHARED
            ${PROJECT_SOURCES}
        )
# Define properties for Android with Qt 5 after find_package() calls as:
#    set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android")
    else()
        add_executable(SerialPort
            ${PROJECT_SOURCES}
        )
    endif()
endif()

target_link_libraries(SerialPort PRIVATE Qt${QT_VERSION_MAJOR}::Widgets Qt6::SerialPort)

# Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1.
# If you are developing for iOS or macOS you should consider setting an
# explicit, fixed bundle identifier manually though.
if(${QT_VERSION} VERSION_LESS 6.1.0)
  set(BUNDLE_ID_OPTION MACOSX_BUNDLE_GUI_IDENTIFIER com.example.SerialPort)
endif()
set_target_properties(SerialPort PROPERTIES
    ${BUNDLE_ID_OPTION}
    MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
    MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
    MACOSX_BUNDLE TRUE
    WIN32_EXECUTABLE TRUE
)

include(GNUInstallDirs)
install(TARGETS SerialPort
    BUNDLE DESTINATION .
    LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
    RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)

if(QT_VERSION_MAJOR EQUAL 6)
    qt_finalize_executable(SerialPort)
endif()

mainwindow.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QWidget>
#include <QSerialPort>
#include <QTimer>

QT_BEGIN_NAMESPACE
namespace Ui {
class MainWindow;
}
QT_END_NAMESPACE

class MainWindow : public QWidget
{
    Q_OBJECT

public:
    MainWindow(QWidget *parent = nullptr);
    ~MainWindow();
    void init();


private slots:

    void on_openPortBtn_released();

    void on_sendBtn_released();

    void onReadyRead();

    void on_openFileBtn_released();

    void on_sendFileBtn_released();

    void on_hexDisplayChx_toggled(bool checked);

    void on_timerSendChx_toggled(bool checked);



    void on_sendStopBtn_released();

private:
    void displayHex();
    void displayText();

    Ui::MainWindow *ui;
    QSerialPort serialPort_;
    QTimer timer_;
};
#endif // MAINWINDOW_H

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.cpp

#include "mainwindow.h"
#include "./ui_mainwindow.h"

#include <QSerialPortInfo>
#include <QMessageBox>
#include <QFileDialog>
#include <QStandardPaths>
#include <QFile>

MainWindow::MainWindow(QWidget *parent)
    : QWidget(parent)
    , ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    init();
}

MainWindow::~MainWindow()
{
    delete ui;
}

void MainWindow::init()
{
    //設置改變
    connect(ui->baudRateCmb,&QComboBox::currentIndexChanged,this,[=]
            {
                auto br= ui->baudRateCmb->currentData().value<QSerialPort::BaudRate>();
                if(!serialPort_.setBaudRate(br))
                {
                    QMessageBox::warning(this,"Setting false","設置波特率失敗:"+serialPort_.errorString());
                }
            });

    connect(ui->dataBitsCmb,&QComboBox::currentIndexChanged,this,[=]
            {
                auto value= ui->baudRateCmb->currentData().value<QSerialPort::DataBits>();
                if(!serialPort_.setDataBits(value))
                {
                    QMessageBox::warning(this,"Setting false","設置數據位失敗:"+serialPort_.errorString());
                }
            });

    connect(ui->stopBitsCmb,&QComboBox::currentIndexChanged,this,[=]
            {
                auto value= ui->stopBitsCmb->currentData().value<QSerialPort::StopBits>();
                if(!serialPort_.setStopBits(value))
                {
                    QMessageBox::warning(this,"Setting false","設置停止位失敗:"+serialPort_.errorString());
                }
            });

    connect(ui->parityCmb,&QComboBox::currentIndexChanged,this,[=]
            {
                auto value= ui->parityCmb->currentData().value<QSerialPort::Parity>();
                if(!serialPort_.setParity(value))
                {
                    QMessageBox::warning(this,"Setting false","設置校驗位失敗:"+serialPort_.errorString());
                }
            });
    //獲取所有的可用的串口
    auto portsInfo=QSerialPortInfo::availablePorts();
    for(auto& info : portsInfo)
    {
        qInfo()<<info.description()<<info.portName()<<info.systemLocation();
        ui->portsCmb->addItem(info.portName()+":"+info.description(),info.portName());
    }
    //獲取標準的波特率
    auto baudRates=QSerialPortInfo::standardBaudRates();
    for(auto br : baudRates)
    {
        ui->baudRateCmb->addItem(QString::number(br),br) ;
    }
    ui->baudRateCmb->setCurrentText("115200");
    //設置停止位
    ui->stopBitsCmb->addItem("1",QSerialPort::OneStop);
    ui->stopBitsCmb->addItem("1.5",QSerialPort::OneAndHalfStop);
    ui->stopBitsCmb->addItem("2",QSerialPort::TwoStop);
    //設置數據位
    ui->dataBitsCmb->addItem("5Bit",QSerialPort::Data5);
    ui->dataBitsCmb->addItem("6Bit",QSerialPort::Data6);
    ui->dataBitsCmb->addItem("7Bit",QSerialPort::Data7);
    ui->dataBitsCmb->addItem("8Bit",QSerialPort::Data8);
    ui->dataBitsCmb->setCurrentText("8Bit");
    //設置校驗位
    ui->parityCmb->addItem( "無校驗",QSerialPort::NoParity   );
    ui->parityCmb->addItem( "偶校驗",QSerialPort::EvenParity );
    ui->parityCmb->addItem( "奇校驗",QSerialPort::OddParity  );
    ui->parityCmb->addItem( "校驗為0",QSerialPort::SpaceParity);
    ui->parityCmb->addItem( "校驗為1",QSerialPort::MarkParity );

    connect(&serialPort_,&QSerialPort::readyRead,this,&MainWindow::onReadyRead);
    timer_.callOnTimeout([=]
     {
         this->on_sendBtn_released();//調用發送函數
     });


}



void MainWindow::on_openPortBtn_released()
{
   //判斷串口是否已經打開,如果已經打開點擊則關閉串口,並讓按鈕顯示為打開串口
    if(serialPort_.isOpen())
    {
        serialPort_.close();
        ui->openPortBtn->setText("打開串口");
        if(timer_.isActive())
            timer_.stop();
        return;
    }
    //獲取串口名
    auto portName = ui->portsCmb->currentData().toString();
    //獲取波特率
    auto baudRate = ui->baudRateCmb->currentData().value<QSerialPort::BaudRate>();
    //獲取數據位
    auto dataBits = ui->dataBitsCmb->currentData().value<QSerialPort::DataBits>();
    //獲取停止位
    auto stopBits = ui->stopBitsCmb->currentData().value<QSerialPort::StopBits>();
    //獲取校驗位
    auto parity = ui->parityCmb->currentData().value<QSerialPort::Parity>();
    //設置串口
    serialPort_.setPortName(portName);
    serialPort_.setBaudRate(baudRate);
    serialPort_.setDataBits(dataBits);
    serialPort_.setStopBits(stopBits);
    serialPort_.setParity(parity);
    //打開串口
    if(!serialPort_.open(QIODevice::ReadWrite))
    {
        QMessageBox::warning(this,"warning",portName+"打開失敗:"+serialPort_.errorString());
        return;
    }
    else
    {
        ui->openPortBtn->setText("關閉串口");
    }


}

//發送
void MainWindow::on_sendBtn_released()
{
    auto dataStr = ui->sendEdit->toPlainText() +( ui->sendNewLineChx->isChecked() ?"\r\n":"");//判斷是否發送新行
    serialPort_.write(dataStr.toLocal8Bit());
}
//讀取
void MainWindow::onReadyRead()
{
   auto data= serialPort_.readAll();
   ui->recvEdit->setPlainText(QString::fromLocal8Bit(data));
}

//打開文件
void MainWindow::on_openFileBtn_released()
{
    auto filename = QFileDialog::getOpenFileName(this,"選擇文件",QStandardPaths::writableLocation(QStandardPaths::DesktopLocation),"txt(*.txt);;all(*.*)");
    if(!filename.isEmpty())
    {
        ui->fileNameEdit->setText(filename);
    }
}

//發送文件
void MainWindow::on_sendFileBtn_released()
{
    auto filename=ui->fileNameEdit->text();
    QFile file(filename);
    if(!file.open(QIODevice::ReadOnly))
    {
        QMessageBox::warning(this,"warning",filename+"打開失敗:"+file.errorString());
        return;
    }
     serialPort_.write(file.readAll());//serialPort_.write(QString::fromUtf8(file.readAll()).toLocal8Bit());//非UTF8編碼
}
//顯示16進位
void MainWindow::displayHex()
{
//先取出數據
    auto dataStr=ui->recvEdit->toPlainText();
//轉成16進位
    auto hexData =dataStr.toLocal8Bit().toHex(' ').toUpper();
//再寫回去
    ui->recvEdit->setPlainText(hexData);
}
//顯示文本
void MainWindow::displayText()
{
    //先取出數據
    auto dataStr =ui->recvEdit->toPlainText();
    //轉成16進位
    auto textData =QString::fromLocal8Bit(dataStr.toLocal8Bit());
    //再寫回去
    ui->recvEdit->setPlainText(textData);

}
//顯示16進位開關
void MainWindow::on_hexDisplayChx_toggled(bool checked)
{
    if(checked)
        displayHex();
    else
        displayText();

}


void MainWindow::on_timerSendChx_toggled(bool checked)
{
    if(checked)
    {

        timer_.start(ui->timerPeriodEdit->text().toUInt());//開啟定時器
        ui->timerPeriodEdit->setEnabled(false);
    }
    else
    {
        timer_.stop();
        ui->timerPeriodEdit->setEnabled(true);
    }

}


void MainWindow::on_sendStopBtn_released()
{
    serialPort_.clear();
    if(timer_.isActive())
        timer_.stop();
}

mainwindow.ui

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在上篇文章中,我們介紹到在多線程環境下,如果編程不當,可能會出現程式運行結果混亂的問題。出現這個原因主要是,JMM 中主記憶體和線程工作記憶體的數據不一致,以及多個線程執行時無序,共同導致的結果。 ...
  • 本文分享自華為雲社區《Go併發範式 流水線和優雅退出 Pipeline 與 Cancellation》,作者:張儉。 介紹 Go 的併發原語可以輕鬆構建流數據管道,從而高效利用 I/O 和多個 CPU。 本文展示了此類pipelines的示例,強調了操作失敗時出現的細微之處,並介紹了乾凈地處理失敗的 ...
  • 自己製作的一個基於Entity Framework Core 的資料庫操作攔截器,可以列印資料庫執行sql,方便開發調試,代碼如下: /// <summary> /// EF Core 的資料庫操作攔截器,用於在資料庫操作過程中進行日誌記錄和監視。 /// </summary> /// <remar ...
  • 一:背景 1. 講故事 過年喝了不少酒,腦子不靈光了,停了將近一個月沒寫博客,今天就當新年開工寫一篇吧。 去年年初有位朋友找到我,說他們的系統會偶發性崩潰,在網上也發了不少帖子求助,沒找到自己滿意的答案,讓我看看有沒有什麼線索,看樣子這是一個牛皮蘚的問題,既然對方有了dump,那就分析起來吧。 二: ...
  • 好久不見,我又回來了。 給大家分享一個我最近使用c#代碼操作ftp伺服器的代碼示例: 1 public abstract class FtpOperation 2 { 3 /// <summary> 4 /// FTP伺服器地址 5 /// </summary> 6 private string f ...
  • 最近看幾個老項目的SQL條件中使用了1=1,想想自己也曾經這樣寫過,略有感觸,特別拿出來說道說道。編寫SQL語句就像炒菜,每一種調料的使用都會影響菜品的最終味道,每一個SQL條件的加入也會影響查詢的執行效率。那麼 1=1 存在什麼樣的問題呢?為什麼又會使用呢? ...
  • 背景 在瀏覽器中訪問本地靜態資源html網頁時,可能會遇到跨域問題如圖。 是因為瀏覽器預設啟用了同源策略,即只允許載入與當前網頁具有相同源(協議、功能變數名稱和埠)的內容。 WebView2預設情況下啟用了瀏覽器的同源策略,即只允許載入與主機相同源的內容。所以如果我們把靜態資源發佈到iis或者通過node ...
  • 1、calc:啟動計算器 2、appwiz.cpl:程式和功能 3、certmgr.msc:證書管理實用程式 4、charmap:啟動字元映射表 5、chkdsk.exe:Chkdsk磁碟檢查(管理員身份運行命令提示符) 6、cleanmgr: 打開磁碟清理工具 7、cliconfg:SQL SER ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...