gpt4 book ai didi

serial-port - Arduino云: Serial Communication not working

转载 作者:行者123 更新时间:2023-12-02 02:31:03 28 4
gpt4 key购买 nike

我无法在 Arduino YUN 上使用串行监视器,我可以使用 IDE 1.5.5 下载编译好的草图(在 Windows XP 上通过显示为 COM6 的 USB 连接器),串行监视器打开但不显示任何内容。为了进行研究,我修改了 Blink 示例草图,如下所示:

/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.

This example code is in the public domain.
*/

// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;

// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
Serial.begin(9600);
while (!Serial) {;}
Serial.println("Blink Program");
}

// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("Blink Program -H");
delay(5000); // wait for a second
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
Serial.println("Blink Program -L");
delay(5000); // wait for a second
}

草图上传并运行,我看到 LED 闪烁,它不等待 SerialMonitor 打开。 SerialMonitor不显示任何内容。我注意到,在上传过程中,COM6 从 Windows 设备管理器中消失,出现了一个新端口 COM7,上传成功完成,COM7 消失,COM6 重新出现。
我还发现 YunSerialTerminal 示例不起作用。
其他人是否已在 Windows XP 上成功使用 IDE 1.5.5 SerialMonitor?
我是否应该断定我的 Arduino Yun 板出现故障?
任何帮助将不胜感激。

最佳答案

我也遇到了同样的问题。 32U4 上的重置解决了问题(左上角以太网连接器旁边的按钮)。 arduino 1.5.x IDE 上出现串口,并建立连接并接收数据。当选择的端口是 wifi 端口而不是真正的串口时,应使用 Bridge 和 Console。我希望这有帮助。最好的,

关于serial-port - Arduino云: Serial Communication not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20681318/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com