Arduino - 串行绘图仪

Arduino - Serial Plotter Arduino - 串行绘图仪

In this tutorial, we will learn how to use the Serial Plotter on Arduino IDE, how to plot the multiple graphs.
在本教程中,我们将学习如何在Arduino IDE上使用串行绘图仪,如何绘制多个图形。

About Serial Plotter 关于串行绘图仪

Serial Plotter is one of the tools in Arduino IDE. Arduino can read the temperature, humidity or any kind of sensor data, and send it to Serial Plotter. Serial Plotter receives data from Arduino and visualizes data as waveforms. Serial Plotter can visualize not only single but also multiple sensor data in the same graph.
串行绘图仪是Arduino IDE中的工具之一。Arduino可以读取温度,湿度或任何类型的传感器数据,并将其发送到串行绘图仪。串行绘图仪从Arduino接收数据,并将数据可视化为波形。串行绘图仪不仅可以在同一图形中显示单个传感器数据,还可以显示多个传感器数据。

Data is exchanged between Serial Plotter and Arduino via USB cable, which is also used to upload the code to Arduino. Therefore, To use Serial Plotter, we MUST connect Arduino and PC via this cable.
数据通过USB线在串行绘图仪和Arduino之间交换,USB线也用于将代码上传到Arduino。因此,要使用串行绘图仪,我们必须通过此电缆连接Arduino和PC。

Serial Plotter includes a selection box to select the serial baud rate and a graph:
串行绘图仪包括一个选择框,用于选择串行波特率和一个图表:

  • X-axis: represent the time. It has 500 points. The time between each point is the time between two consecutive Serial.println() function calls. This time is usually equal to the time of loop() function.
    X轴:表示时间。它有 500 点。每个点之间的时间是两个连续的 Serial.println() 函数调用之间的时间。这个时间通常等于 loop() 函数的时间。
  • Y-axis: represents the values received from Arduino. The Y-axis automatically adjusts itself as the value increases or decreases.
    Y轴:表示从Arduino接收的值。Y 轴会随着值的增加或减少而自动调整。

If you want to use the Serial Plotter on your smartphone, you can use the Web Serial Plotter instead.
如果您想在智能手机上使用串行绘图仪,您可以改用网络串行绘图仪。

How To Open Serial Plotter 如何打开串行绘图仪

On Arduino IDE, Click Serial Plotter icon
在 Arduino IDE 上,单击 Serial Plotter 图标
请添加图片描述

Plotting of Single Line in Graph 图中单线的绘制

To print a single graph, we just need to send the data and terminate it by “\r\n” character.
要打印单个图形,我们只需要发送数据并用“\r\n”字符终止它。

In detail, we just need to useSerial.println() function
详细来说,我们只需要使用 Serial.println() 函数

Serial.println(variable); 

※ NOTE THAT: ※ 注意事项:

Serial.println() automatically appends “\r\n” characters after data.
Serial.println() 自动在数据后附加“\r\n”字符。

Example Code 示例代码

This example reads the value from an analog input pin and plots them on Serial Plotter
本例从模拟输入引脚读取值,并将其绘制在串行绘图仪上

/** Created by ArduinoGetStarted.com** This example code is in the public domain** Tutorial page: https://arduinogetstarted.com/tutorials/arduino-serial-plotter*/void setup() {Serial.begin(9600); //好像115200不行
}void loop() {int y1 = analogRead(A0);Serial.println(y1);delay(100);
}
Quick Steps 快速步骤
  • Copy the above code and open with Arduino IDE
    复制上面的代码并使用Arduino IDE打开
  • Click Upload button on Arduino IDE to upload code to Arduino
    单击Arduino IDE上的“上传”按钮,将代码上传到Arduino
  • Open Serial Plotter 开放式串行绘图仪
  • Select baurate 9600 选择金黄色 9600
  • See graph on Serial Plotter
    参见串行绘图仪上的图表

请添加图片描述

Plotting of Multiple Lines in Graph 在图形中绘制多条线

When we want to plot multiple variables, we need to separate variables from each other by “\t” or " " character. The last value MUST be terminated by “\r\n” characters.
当我们想绘制多个变量时,我们需要用"\t"或" "字符将变量彼此分开。最后一个值必须以“\r\n”字符结尾。

In detail: 详细地:

  • The first variable 第一个变量
Serial.print(variable_first); 
  • The middle variables 中间变量
Serial.print("\t"); // or Serial.print(" ")
Serial.print(variable_nth); 
  • The last variable 最后一个变量
Serial.print("\t"); // or Serial.print(" ") 
Serial.println(variable_last); 

Example Code 示例代码

This example reads the value from 4 analog input pins and plots them on Serial Plotter
本例从4个模拟输入引脚读取值,并在串行绘图仪上绘制

/** Created by ArduinoGetStarted.com** This example code is in the public domain** Tutorial page: https://arduinogetstarted.com/tutorials/arduino-serial-plotter*/void setup() {Serial.begin(9600); 
}void loop() {int y1 = analogRead(A0);int y2 = analogRead(A1);int y3 = analogRead(A2);int y4 = analogRead(A3);Serial.print(y1);Serial.print(" "); // a space ' ' or  tab '\t' character is printed between the two values.Serial.print(y2);Serial.print(" "); // a space ' ' or  tab '\t' character is printed between the two values.Serial.print(y3);Serial.print(" "); // a space ' ' or  tab '\t' character is printed between the two values.Serial.println(y4); // the last value is followed by a carriage return and a newline characters.delay(100);
}

Multiple Graph: 多图:

请添加图片描述

Example of 3 Sine Waveforms 3 正弦波形示例

/** Created by ArduinoGetStarted.com** This example code is in the public domain** Tutorial page: https://arduinogetstarted.com/tutorials/arduino-serial-plotter*/void setup() {Serial.begin(9600);
}void loop() {for(int i = 0; i < 360; i += 5) {float y1 = 1 * sin(i * M_PI / 180);float y2 = 2 * sin((i + 90)* M_PI / 180);float y3 = 5 * sin((i + 180)* M_PI / 180);​    Serial.print(y1);
​    Serial.print("\t"); // a space ' ' or  tab '\t' character is printed between the two values.
​    Serial.print(y2);
​    Serial.print("\t"); // a space ' ' or  tab '\t' character is printed between the two values.
​    Serial.println(y3); // the last value is followed by a carriage return and a newline characters.​    delay(100);}
}

Multiple Sine Waveform Graph:
多正弦波形图:

请添加图片描述

Video Tutorial 视频教程

We are considering to make the video tutorials. If you think the video tutorials are essential, please subscribe to our YouTube channel to give us motivation for making the videos.
我们正在考虑制作视频教程。如果您认为视频教程是必不可少的,请订阅我们的 YouTube 频道,为我们制作视频提供动力。

Function References 函数参考

  • Serial.available()
  • Serial.begin()
  • Serial.print()
  • Serial.println()
  • Serial.read()
  • Serial.readBytes()
  • Serial.readBytesUntil()
  • Serial.readString()
  • Serial.readStringUntil()
  • Serial.write()

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

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

相关文章

Swift Combine — Operators(常用Filtering类操作符介绍)

目录 filter(_: )tryFilter(_: )compactMap(_: )tryCompactMap(_: )removeDuplicates()first(where:)last(where:) Combine中对 Publisher的值进行操作的方法称为 Operator&#xff08;操作符&#xff09;。 Combine中的 Operator通常会生成一个 Publisher&#xff0c;该 …

jupyter notebook的安装与使用

jupyter notebook的安装与使用 使用jupyter notebook有两种方法&#xff1a; 使用vscode里的插件直接运行jupyter程序。使用原生的基于浏览器网页的方式访问&#xff0c;需要在终端里开启jupyter的服务。 方法一&#xff1a; VSCODE中使用jupyter 在vscode中新建.ipynb后缀…

webstorm无法识别@路径的问题,左键无法跳转

在项目根目录下创建 webstorm.config.js use strict; const webpackConfig require(vue/cli-service/webpack.config.js); module.exports webpackConfig;webstorm设置里找到以下位置&#xff0c;引入新建的 webstorm.config.js即可&#xff0c;不生效把webstorm重启一下

android Studio 无线开发调试: PC机远程安卓电脑 免费

背景 公司的安卓机比较大&#xff0c;还有连接着串口设备不好挪动。 但是遇到问题调试很麻烦。想找到一套远程调试方法。 实现 要求&#xff1a; adb android Studio 2023.3.1 安卓机IP:1928.168.1.228 直接用adb远程连接&#xff1a;adb connect 1928.168.1.228 默认端口…

springboot无法获取nacos中配置文件bug记录

项目使用版本 <spring-cloud.version>Hoxton.SR12</spring-cloud.version> <spring.cloud.alibaba.version>2.2.9.RELEASE</spring.cloud.alibaba.version> 连接同事启动的nacos获取配置文件 一直获取不到 &#xff0c; 经排查发现同事启动的nacos版…

【SQL】MySQL 常见存储引擎

MySQL 提供了多种存储引擎&#xff08;Storage Engine&#xff09;&#xff0c;每种存储引擎都有其独特的特性和适用场景。以下是 MySQL 中一些常见的存储引擎&#xff1a; InnoDB&#xff1a; 特点&#xff1a;支持事务&#xff08;ACID 特性&#xff09;、行级锁定、外键约束…

JavaScript倒序遍历数组:计算年度累积值

在 JavaScript 开发中&#xff0c;我们经常需要对数组中的数据进行特定顺序的处理。倒序 for 循环是一种常见的技术&#xff0c;它可以从数组的末尾开始向前遍历元素。这种技术特别适用于需要基于前一个元素的值来计算当前元素的场景。 示例场景&#xff1a;计算年度累积值 假…

HarmonyOS Next开发学习手册——ExtensionAbility

概述 EmbeddedUIExtensionAbility 是EMBEDDED_UI类型的ExtensionAbility组件&#xff0c;提供了跨进程界面嵌入的能力。 EmbeddedUIExtensionAbility需要和 EmbeddedComponent 一起配合使用&#xff0c;开发者可以在UIAbility的页面中通过EmbeddedComponent嵌入本应用的Embed…

读AI新生:破解人机共存密码笔记11智能爆炸

1. 大猩猩问题 1.1. 大约1000万年前&#xff0c;现代大猩猩的祖先创造了进化出现代人类的遗传谱系 1.1.1. 它们的物种基本上没有未来&#xff0c;除了我们屈尊所允许它们拥有的未来 1.1.2. 我们不希望在超级智能机器面前处于类似的地位 1.2. 大猩猩问题就是人类是否能在一个…

电脑提示msvcr120.dll丢失怎样修复

文件功能与重要性&#xff1a;msvcr120.dll 文件的功能和重要性体现在多个方面&#xff0c;以下是对其核心功能的详细分析&#xff1a; 运行时支持 msvcr120.dll 提供了运行时环境&#xff0c;使得使用 Microsoft Visual C 2013 编译的程序能够调用必要的运行时函数。这些函数…

Mysql----表的约束

提示&#xff1a;以下是本篇文章正文内容&#xff0c;下面案例可供参考 一、表的约束 表的约束&#xff1a;表中一定要有约束&#xff0c;通过约束让插入表中的数据是符合预期的。它的本质是通过技术手段&#xff0c;让程序员插入正确的数据&#xff0c;约束的最终目标是保证…

Java | Leetcode Java题解之第189题轮转数组

题目&#xff1a; 题解&#xff1a; class Solution {public void rotate(int[] nums, int k) {k % nums.length;reverse(nums, 0, nums.length - 1);reverse(nums, 0, k - 1);reverse(nums, k, nums.length - 1);}public void reverse(int[] nums, int start, int end) {whil…

【机器学习】图神经网络(NRI)模型原理和运动轨迹预测代码实现

1.引言 1.1.NRI研究的意义 在许多领域,如物理学、生物学和体育,我们遇到的系统都是由相互作用的组分构成的,这些组分在个体和整体层面上都产生复杂的动态。建模这些动态是一个重大的挑战,因为往往我们只能获取到个体的轨迹数据,而不知道其背后的相互作用机制或具体的动态…

Shardingsphere-Proxy 5.5.0数据迁移

Shardingsphere-Proxy 5.5.0数据迁移 Shardingsphere系列目录&#xff1a;背景配置集群部署搭建Zookeeper修改shardingsphere-proxy配置重启shardingsphere-proxy 执行数据迁移连接代理数据库实例&#xff08;Navicate&#xff09;应用代理数据库注册目标分片数据库存储单元创建…

el-dialog弹框全局增加可拖拽指令

一、需求弹框可以任意拖拽位置,并且关闭重置不影响下一个弹框出现的位置 首先建的新的js文件draggable.j s具体位置随意 // draggable.js export default {bind(el, binding, vnode) {const dialogHeaderEl = el.querySelector(.el-dialog__header);const dragDom = el.quer…

composer 安装如何彻底删除

举例 安装的composer require php-ffmpeg/php-ffmpeg包 1.通过 Composer 移除包 composer remove php-ffmpeg/php-ffmpeg 2.清理 Composer 缓存&#xff08;可跳过&#xff09; composer clear-cache 3.删除 Composer 生成的文件&#xff08;可选&#xff09; 某些…

如何将图片旋转任意角度?这四种方法轻松将图片旋转至任意角度!

如何将图片旋转任意角度&#xff1f;当我们涉及到图片时&#xff0c;常常会面临角度不佳的挑战&#xff0c;这一问题可能会给我们带来一系列不便&#xff0c;让我们深入探讨这些挑战&#xff0c;并探寻解决之道&#xff0c;首先&#xff0c;错误的角度可能导致视觉失真&#xf…

SaaS产品管理指标

在SaaS&#xff08;软件即服务&#xff09;领域&#xff0c;产品管理是一项关键任务。有效的管理不仅可以提升用户体验&#xff0c;还能驱动业务增长和收入提升。本文将探讨SaaS产品管理中常见且重要的管理指标&#xff0c;帮助产品经理们更好地理解和应用这些指标来优化产品性…

<sa8650>QCX—如何使用 CCI 调试器

<sa8650>QCX—如何使用 CCI 调试器 一、 前言二、 使用 qcxserver 运行 CCI 调试器2.1 单寄存器读取命令2.2 寄存器连续读取2.3 写入命令2.4 解析文件中的ccidbgr命令2.4 -help 参数2.5 检查 I2C 上的活动设备三、 运行单机版 ccidbgr3.1 单寄存器读取命令3.2 解析文件中的cc…

审稿意见回复信英文模板

以下是一个常用的英文审稿意见回复信模板&#xff0c;包含一些常见的语料总结&#xff0c;供你参考&#xff1a; 审稿意见回复信模板 Dear [Editor’s Name], Re: Manuscript ID [Manuscript ID] titled “[Title of the Manuscript]” We sincerely appreciate the time an…