任何人都可以帮助解决此错误消息吗? 刚买了一个arduino uno&卡住了 非常感谢
robot_arm1:3:错误:在'/'标记
之前的预期unqualified-id*/
pinMode(buttonPin, INPUT_PULLUP);
Serial.print("Initializing SD card..."); // make sure that the default chip select pin is set to // output, even if you don't use it: pinMode(10, OUTPUT);
// see if the card is present and can be initialized: if (!SD.begin(chipSelect)) { Serial.println("Card failed, or not present"); // don't do anything more: return; } Serial.println("card initialized.");
}
void loop() {
答案 0 :(得分:0)
代码似乎有额外的' * /'在一开始的时候 尝试删除该令牌,代码应该编译。 或者,您可以在有问题的行之前和之后发布更大的代码块吗?