上传时Arduino错误:未选择Board

时间:2018-04-09 21:47:16

标签: arduino arduino-ide

我的代码:

const int buttonPin = 2;
const int ledPin = 13;

void setup() {
  pinMode(ledPin, OUTPUT);
  pinMode(buttonPin, OUTPUT);
}

void loop() {
  digitalRead(ledPin, buttonPin) ? digitalWrite(ledPin, HIGH) : digitalWrite(ledPin, LOW);
}

它给了我这个错误:

processing.app.debug.RunnerException: Board is not selected
    at cc.arduino.Compiler.build(Compiler.java:168)
    at processing.app.SketchController.build(SketchController.java:647)
    at processing.app.SketchController.exportApplet(SketchController.java:672)
    at processing.app.Editor$DefaultExportHandler.run(Editor.java:2168)
    at java.lang.Thread.run(Thread.java:748)
Board is not selected

它说没有选择电路板,但我选择了电路板/ dev / ttyUSB0。我试过了

usermod -a -G uucp sudo0272
usermod -a -G uucp root

因为当我安装Arduino IDE时,它说是这样做的。问题是什么?如何解决此错误?

1 个答案:

答案 0 :(得分:1)

您应该提供您的设备型号,因为某些型号已经知道/修复了其他型号(即UNO与Nano)。

无论如何,这似乎是您的设备USB驱动程序和Arduino IDE之间的设置问题。它可能就像你没有在菜单中选择Board和Port那样简单......或者可能是驱动程序的问题(过时,损坏,丢失!等)

首先,

检查以确保您已在IDE菜单中选择了正确的主板: enter image description here

,然后

选中正确的COM端口。这取决于您插入的USB端口:

enter image description here

希望这有帮助!如果仍有问题,您需要提供有关您情况的更多信息。