我正在使用Arduino Uno板并使用Windows 10系统进行编程。从Arduino网站上的教程,我试图上传以下代码:
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
int sensorValue = analogRead(A0);
Serial.println(sensorValue);
delay(1);
}
它经历了一系列问题:
首先,
avrdude: ser_open(): can't open device "\\.\com3"
我搜索了他的问题,并发现最常见的解决方案是去设备管理器并更改端口的名称,然后拔下并重新插入arduino板。我做到了
其次,
C:\Program Files (x86)\Arduino\hardware\tools\axr\bin\avr-ar:
unable to rename 'core.a'; reason: file exists\\
我认为这可能是一个记忆问题。我使用了电路板上的复位按钮,并从解决方案到第一个问题重复步骤。我试图再次上传代码。
但是现在,我没有收到任何错误消息。但问题是上传代码需要花费很长时间。我很久以来就看到了Uploading...
的状态。绿色进度条也已完成,但到目前为止尚未完成上传。
任何理解和解决此问题的帮助都将受到赞赏。
答案 0 :(得分:0)
我的解决方案是通过任务管理器禁用Apple的Bonjour服务。