Arduino 清除串行监控

Ammar Ali 2023年1月30日 2021年4月29日
  1. 在 Arduino IDE 中通过关闭并再次打开来清除串口监控
  2. 通过使用另一个串行终端程序清除串行监控
Arduino 清除串行监控

本教程将讨论两种清除 Arduino IDE 串行监控的方法。一种方法是关闭它,然后再次打开它,另一种方法是使用另一个串行终端程序。

在 Arduino IDE 中通过关闭并再次打开来清除串口监控

在 Arduino IDE 中没有清除串行监控的直接方法,但是你可以通过将其关闭然后再次打开来清除它。此方法还将重新启动 Arduino。你还可以在 void 循环中使用延迟来减慢串行监控上的打印值。通过这种方式,你可以看到这些数值。你也可以从 Arduino IDE 暂停串行监控以检查串行读数。

void loop(){
    // Your Code
    delay(1000);
}

通过使用另一个串行终端程序清除串行监控

除了使用 Arduino IDE,你还可以使用其他程序(例如 Brey 终端)进行串行监视。它有很多令人惊叹的功能,同时还有一个清晰的接收、发送窗口。但它仅适用于 Windows。它只是一个小的 .exe 文件,无需安装即可使用。使用此链接下载该程序。

Author: Ammar Ali
Ammar Ali avatar Ammar Ali avatar

Hello! I am Ammar Ali, a programmer here to learn from experience, people, and docs, and create interesting and useful programming content. I mostly create content about Python, Matlab, and Microcontrollers like Arduino and PIC.

LinkedIn Facebook

相关文章 - Arduino Serial