0
任何人都可以幫助解決此錯誤消息嗎? 剛買了一個Arduino UNO &已經 非常感謝robot_arm1:3:錯誤:在'/'令牌之前預期的非限定標識
robot_arm1卡:3:錯誤:之前 '/' 令牌
*/
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() {
請添加更多代碼並進行格式化。指出造成錯誤的線是什麼。 – jabujavi
謝謝,我試圖粘貼完整的代碼,但stackoverflow有一個限制。 – Steve765
完整的代碼在這裏:https://github.com/Dileepmeom/Arduino-Robotic-Arm---Copt-Cat/commit/d11fb86573a43bebe0f71824b45c313ac2cb32ae,我很想得到這個工作,因爲它會很棒!你能看看它是否適用於你的ide嗎?非常感謝 – Steve765