从零开始实现自己的串口调试助手(8)-循环发送

循环发送

准备

创建槽函数

设置QSpinBox的最大值

注意:

// 我们不能在qt的ui线程中延时 ,否则将导致页面刷新问题

//QThread::msleep(ui->spinBox->text().toInt());//设置下次发送时间间隔

定时器实现

关联信号与槽:

//添加自动换行定时器

btnConTimer = new QTimer(this);

connect(btnConTimer,&QTimer::timeout,this,&Widget::btnHandler);

创建控件处理函数

cpp 复制代码
void Widget::btnHandler()
{
    if(btnIndex<buttons.size()) { // 遍历我们创建的多文本控件数组
        QPushButton *btnTmp = buttons[btnIndex];// 读到每一个发送按钮
        emit btnTmp->clicked(); //发出被点击信号 -->跳到对应处理函数-->发送
        btnIndex++;
    }
    else {
        btnIndex  = 0; // 复位
    }

}

实现定时器控制槽函数

cpp 复制代码
void Widget::on_checkBox_send_clicked(bool checked)
{
    if(checked){ // 循环发送被勾选
        ui->spinBox->setEnabled(false);
        btnConTimer->start(ui->spinBox->text().toInt()); // 根据框内的值设置定时器周期
    }
    else{
        ui->spinBox->setEnabled(true);
        btnConTimer->stop();
    }
}

线程实现:

自定义线程类

customthread.h
cpp 复制代码
#ifndef CUSTOMTHREAD_H
#define CUSTOMTHREAD_H

#include <QThread>
#include <QWidget>
#include "widget.h"

class customThread : public QThread
{
    Q_OBJECT // 需要用这个宏里面的信号与槽
public:
    customThread(QWidget *parent);

protected:
   void run() override;

signals:
 void  threadTimeout();


};

#endif // CUSTOMTHREAD_H
customthread.cpp
cpp 复制代码
#include "customthread.h"



customThread::customThread(QWidget *parent):QThread(parent)
{

}

void customThread::run()
{
    while (true) {
    msleep(1000);
    emit threadTimeout();//每隔一秒发一次超时信号
    }

}

线程的信号处理

// 自动换行线程初始化

myThread = new customThread(this);

connect(myThread,&customThread::threadTimeout,this,&Widget::btnHandler);

修改槽函数

cpp 复制代码
void Widget::on_checkBox_send_clicked(bool checked)
{
    if(checked){ // 循环发送被勾选
        ui->spinBox->setEnabled(false);
        myThread->start(); //线程开始
        //btnConTimer->start(ui->spinBox->text().toInt()); // 根据框内的值设置定时器周期
    }
    else{
        ui->spinBox->setEnabled(true);
        myThread->terminate();
        //btnConTimer->stop();
    }
}

实现效果

相关推荐
CoderIsArt18 小时前
QT中已知4个坐标位置求倾斜平面与倾斜角度
qt·平面
懒羊羊大王&18 小时前
模版进阶(沉淀中)
c++
owde19 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
GalaxyPokemon19 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
W_chuanqi19 小时前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft
__lost20 小时前
Pysides6 Python3.10 Qt 画一个时钟
python·qt
tadus_zeng20 小时前
Windows C++ 排查死锁
c++·windows
EverestVIP20 小时前
VS中动态库(外部库)导出与使用
开发语言·c++·windows
胡斌附体20 小时前
qt socket编程正确重启tcpServer的姿势
开发语言·c++·qt·socket编程
GalaxyPokemon21 小时前
Muduo网络库实现 [十] - EventLoopThreadPool模块
linux·服务器·网络·c++