QT上位机开发(串口界面设计)

【 声明:版权所有,欢迎转载,请勿用于商业用途。 联系信箱:feixiaoxing @163.com】

        如果上位机要和嵌入式设备进行打交道的话,那么串口可能就是我们遇到的第一个硬件设备。串口的物理接线很简单,基本上就是收、发、地三根线。目前大部分台式机,或者笔记本都已经没有232串口了,所以如果上位机需要和嵌入式设备进行通信的话,还需要通过usb转一下,这样才用的起来。

1、串口的应用场合

        串口的传输速率不是很快,这决定了它基本上只能进行低速数据的传输。但是就算是进行低速传输,最大速度也能达到115200bit每秒。这意味着,如果传输的仅仅是一些打印、传感器、控制数据,那也是绰绰有余了。串口的应用场景很多,串口转屏幕、串口的传感器、串口的gprs,这些都是很常见的串口设备。

2、串口之上的协议

        如果只是串口,的确没有什么难度。关键是,每一种串口设备都有自己的协议。对于上位机来说,它通常当成是主动请求方。而对下位机,也就是嵌入式模块来说,它一般是当成响应方来进行应答。两者之间的应答应该保持在一定的形式。举个例子来说,一个简单的协议应该包括这几个方面,

        1)报文头;

        2)长度;

        3)命令号;

        4)命令详细数据;

        5)校验码。

        报文头,一般用特殊的数据来表示,通常是55aa这种。长度,也就是报文的全部长度。可以用它来进行数据分割,也可以用它来计算校验码。命令号的话,根据内容的多少来设定。如果命令比较多,还有可能分成主命令和子命令。命令详细数据,这就和具体命令相关了,这里不再一一描述。最后就是校验码,为了防止数据在传输的过程中发生错误,一般需要对前面的数据做一个校验的操作。如果检验码没有问题,那么一切ok。反之,接收方一般会要求发送方重新发送数据。

3、练习串口界面设计

        网上关于串口界面设计的代码,或者是开源软件很多。大家不要认为软件比较多,就没有写的必要。正因为多,所以写起来才有很多的内容可以参考。而且,别人能写,不代表自己就可以完成相关的编写工作,这完全是两码事。

4、自己编写和设计串口界面

        串口界面一般分成两个部分,左边是设置,右边是数据显示。设置的话,分成了串口选择、波特率、数据位选择、校验位选择、停止位选择这几个部分。有了这几个参数,我们就可以打开串口了。当然对于收到的数据,我们也可以选择用ascii码显示,还是用16进制显示。

        对于数据的发送也是一样,可以通过选择ascii方式还是hex的方式,判断我们的数据应该怎么发送才对。右侧的部分一般是两个编辑框,一个是收到的数据,一个是发送的数据,在发送的数据框旁边通常包含一个发送按钮。

        最后在窗口的下半部分,还会有一些状态栏的数据,比如串口状态、收发了多少字节、版本号等等。我们在用qt实现的时候,首先需要创建一个widget工程,接下来用designer进行界面设计就可以了。因为控件的数量比较多,这里就不建议大家用cpp硬编码的形式去进行界面的绘制动作了。不管怎么说,哪怕是再简单的东西,还是要动手去练一练,遇到问题了经过思考和反馈,最后才能变成自己能够真正理解的东西。

        这是它对应的ui文件,

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"><class>QtWidgetsApplicationClass</class><widget class="QMainWindow" name="QtWidgetsApplicationClass"><property name="geometry"><rect><x>0</x><y>0</y><width>805</width><height>527</height></rect></property><property name="windowTitle"><string>QtWidgetsApplication</string></property><widget class="QWidget" name="centralWidget"><widget class="QComboBox" name="comboBox"><property name="geometry"><rect><x>87</x><y>21</y><width>87</width><height>21</height></rect></property></widget><widget class="QComboBox" name="comboBox_2"><property name="geometry"><rect><x>86</x><y>61</y><width>87</width><height>21</height></rect></property></widget><widget class="QComboBox" name="comboBox_3"><property name="geometry"><rect><x>86</x><y>101</y><width>87</width><height>21</height></rect></property></widget><widget class="QComboBox" name="comboBox_5"><property name="geometry"><rect><x>86</x><y>185</y><width>87</width><height>21</height></rect></property></widget><widget class="QPushButton" name="pushButton"><property name="geometry"><rect><x>34</x><y>227</y><width>131</width><height>31</height></rect></property><property name="text"><string>打开串口</string></property></widget><widget class="QRadioButton" name="radioButton"><property name="geometry"><rect><x>24</x><y>268</y><width>115</width><height>19</height></rect></property><property name="text"><string>ASCII</string></property></widget><widget class="QRadioButton" name="radioButton_2"><property name="geometry"><rect><x>124</x><y>268</y><width>61</width><height>19</height></rect></property><property name="text"><string>HEX</string></property></widget><widget class="QCheckBox" name="checkBox"><property name="geometry"><rect><x>24</x><y>298</y><width>161</width><height>19</height></rect></property><property name="text"><string>显示接收数据时间</string></property></widget><widget class="QPushButton" name="pushButton_2"><property name="geometry"><rect><x>34</x><y>328</y><width>131</width><height>31</height></rect></property><property name="text"><string>清空接受</string></property></widget><widget class="QRadioButton" name="radioButton_3"><property name="geometry"><rect><x>24</x><y>381</y><width>110</width><height>19</height></rect></property><property name="text"><string>ASCII</string></property></widget><widget class="QRadioButton" name="radioButton_4"><property name="geometry"><rect><x>123</x><y>381</y><width>61</width><height>19</height></rect></property><property name="text"><string>HEX</string></property></widget><widget class="QCheckBox" name="checkBox_2"><property name="geometry"><rect><x>24</x><y>413</y><width>161</width><height>19</height></rect></property><property name="text"><string>发送新行</string></property></widget><widget class="QCheckBox" name="checkBox_3"><property name="geometry"><rect><x>25</x><y>448</y><width>91</width><height>19</height></rect></property><property name="text"><string>自动发送</string></property></widget><widget class="QLineEdit" name="lineEdit"><property name="geometry"><rect><x>124</x><y>437</y><width>41</width><height>31</height></rect></property></widget><widget class="QLabel" name="label_7"><property name="geometry"><rect><x>37</x><y>498</y><width>111</width><height>16</height></rect></property><property name="text"><string>串口已经关闭</string></property></widget><widget class="QLabel" name="label_8"><property name="geometry"><rect><x>307</x><y>498</y><width>171</width><height>20</height></rect></property><property name="text"><string>TX:0Bytes  RX:0Bytes</string></property></widget><widget class="QLabel" name="label_9"><property name="geometry"><rect><x>687</x><y>498</y><width>51</width><height>20</height></rect></property><property name="text"><string>@V1.0</string></property></widget><widget class="QTextEdit" name="textEdit"><property name="geometry"><rect><x>210</x><y>11</y><width>580</width><height>351</height></rect></property></widget><widget class="QTextEdit" name="textEdit_2"><property name="geometry"><rect><x>213</x><y>381</y><width>471</width><height>101</height></rect></property></widget><widget class="QPushButton" name="pushButton_3"><property name="geometry"><rect><x>692</x><y>410</y><width>90</width><height>41</height></rect></property><property name="text"><string>发送</string></property></widget><widget class="QGroupBox" name="groupBox"><property name="geometry"><rect><x>10</x><y>10</y><width>191</width><height>471</height></rect></property><property name="title"><string/></property><widget class="QLabel" name="label_6"><property name="geometry"><rect><x>159</x><y>438</y><width>21</width><height>16</height></rect></property><property name="text"><string>s</string></property></widget><widget class="QSplitter" name="splitter"><property name="geometry"><rect><x>10</x><y>0</y><width>51</width><height>201</height></rect></property><property name="orientation"><enum>Qt::Vertical</enum></property><widget class="QLabel" name="label"><property name="text"><string>串口 :</string></property></widget><widget class="QLabel" name="label_2"><property name="text"><string>波特率:</string></property></widget><widget class="QLabel" name="label_3"><property name="text"><string>数据位:</string></property></widget><widget class="QLabel" name="label_4"><property name="text"><string>校验位:</string></property></widget><widget class="QLabel" name="label_5"><property name="text"><string>停止位:</string></property></widget></widget><widget class="QComboBox" name="comboBox_4"><property name="geometry"><rect><x>76</x><y>130</y><width>87</width><height>21</height></rect></property></widget></widget><zorder>groupBox</zorder><zorder>label</zorder><zorder>label_2</zorder><zorder>label_3</zorder><zorder>label_4</zorder><zorder>label_5</zorder><zorder>comboBox</zorder><zorder>comboBox_2</zorder><zorder>comboBox_3</zorder><zorder>comboBox_5</zorder><zorder>pushButton</zorder><zorder>radioButton</zorder><zorder>radioButton_2</zorder><zorder>checkBox</zorder><zorder>pushButton_2</zorder><zorder>radioButton_3</zorder><zorder>radioButton_4</zorder><zorder>checkBox_2</zorder><zorder>checkBox_3</zorder><zorder>lineEdit</zorder><zorder>label_7</zorder><zorder>label_8</zorder><zorder>label_9</zorder><zorder>textEdit</zorder><zorder>textEdit_2</zorder><zorder>pushButton_3</zorder></widget></widget><layoutdefault spacing="6" margin="11"/><resources><include location="QtWidgetsApplication.qrc"/></resources><connections/>
</ui>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/319243.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

使用Tensorboard可视化网络结构(基于pytorch)

前言 我们在搭建网络模型的时候&#xff0c;通常希望可以对自己搭建好的网络模型有一个比较好的直观感受&#xff0c;从而更好地了解网络模型的结构&#xff0c;Tensorboard工具的使用就给我们提供了方便的途径 Tensorboard概况 Tensorboard是由Google公司开源的一款可视化工…

【langchain】入门初探实战笔记(Chain, Retrieve, Memory, Agent)

1. 简介 1.1 大语言模型技术栈 大语言模型技术栈由四个主要部分组成&#xff1a; 数据预处理流程&#xff08;data preprocessing pipeline&#xff09;嵌入端点&#xff08;embeddings endpoint &#xff09;向量存储&#xff08;vector store&#xff09;LLM 终端&#xff…

机器学习(四) -- 模型评估(1)

系列文章目录 机器学习&#xff08;一&#xff09; -- 概述 机器学习&#xff08;二&#xff09; -- 数据预处理&#xff08;1-3&#xff09; 机器学习&#xff08;三&#xff09; -- 特征工程&#xff08;1-2&#xff09; 机器学习&#xff08;四&#xff09; -- 模型评估…

GaussDB数据库使用COPY命令导数

目录 一、前言 二、GaussDB数据库使用COPY命令导数语法 1、语法COPY FROM 2、语法COPY TO 3、特别说明及参数示意 三、GaussDB数据库使用COPY命令导数示例 1、操作步骤 2、准备工作&#xff08;示例&#xff09; 3、把一个表的数据拷贝到一个文件&#xff08;示例&…

【python入门】day17:模块化编程、math库常见函数

什么叫模块 模块的导入 导入所有&#xff1a;import 模块名称 导入指定&#xff1a;from 模块名称 import 函数/变量/类 python的math库 什么是math库 Python的math库是Python的内建库之一&#xff0c;它提供了许多数学函数&#xff0c;包括三角函数、对数函数、幂函数等&a…

生成式AI在自动化新时代中重塑RPA

生成式AI的兴起正在推动行业的深刻变革&#xff0c;其与RPA技术的结合&#xff0c;标志着自动化领域新时代的到来。这种创新性结合极大地提升了系统的适应性&#xff0c;同时也推动了高级自动化解决方案的发展&#xff0c;为下一代RPA的诞生奠定了坚实的基础。 核心RPA技术专注…

Intel SGX -- The Life Cycle of an SGX Enclave

文章目录 前言一、The Life Cycle of an SGX Enclave1.1 Creation1.2 Loading1.3 Initialization1.4 Teardown 二、The Life Cycle of an SGX Thread2.1 Synchronous Enclave Entry2.2 Synchronous Enclave Exit2.3 Asynchronous Enclave Exit (AEX)2.4 Recovering from an Asy…

一个基于SpringBoot+Thymeleaf渲染的图书管理系统

功能: 用户: a.预约图书 b.查看预约记录 c.还书 管理员: a.添加图书 b.处理预约(借书) c.查看借阅记录 另: 1.当用户过了还书日期仍旧未还书时会发邮件通知 2.当有书被还时发邮件通知预约书的用户到图书馆进行借书

介绍十五种Go语言开发的IDE

当涉及到Go语言开发的IDE时&#xff0c;以下是几种常用的选择&#xff1a; Goland&#xff1a;这是由JetBrains公司开发的一款商业IDE&#xff0c;旨在为Go开发者提供符合人体工程学的开发环境。Goland整合了IntelliJ平台&#xff0c;提供了针对Go语言的编码辅助和工具集成&am…

【MATLAB第88期】基于MATLAB的6种神经网络(ANN、FFNN、CFNN、RNN、GRNN、PNN)多分类预测模型对比含交叉验证

【MATLAB第88期】基于MATLAB的6种神经网络&#xff08;ANN、FFNN、CFNN、RNN、GRNN、PNN&#xff09;多分类预测模型对比含交叉验证 前言 本文介绍六种类型的神经网络分类预测模型 1.模型选择 前馈神经网络 (FFNN) 人工神经网络 (ANN) 级联前向神经网络 (CFNN) 循环神经网…

每日一道算法题day-one(备战蓝桥杯)

从今天开始博主会每天做一道算法题备战蓝桥杯&#xff0c;并分享博主做题的思路&#xff0c;有兴趣就加入我把&#xff01; 算法题目&#xff1a; 有一个长度为 N 的字符串 S &#xff0c;其中的每个字符要么是 B&#xff0c;要么是 E。 我们规定 S 的价值等于其中包含的子…

Spark---RDD介绍

文章目录 1.Spark核心编程2.RDD介绍2.1.RDD基本原理2.2 RDD特点1.弹性2.分布式 &#xff1a;数据存储在大数据集群的不同节点上3.数据集 &#xff1a;RDD封装了计算逻辑&#xff0c;并不保存数据4.数据抽象 &#xff1a;RDD是一个抽象类&#xff0c;具体实现由子类来实现5. 不可…