這只是一個簡單的測試程序。我試圖讓Arduino的打印「接收」在液晶顯示屏上。我認爲這是我的陳述,導致錯誤,任何想法?Arduino的串行監視器輸入?
當前「發送」放入串行監視器時,什麼也沒有發生。
下面是代碼:
#include <LiquidCrystal.h>
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
char serialinput; // for incoming serial data
void setup() {
Serial.begin(9600); // opens serial port, sets data rate to 9600 bps
}
void loop() {
// send data only when you receive data:
if (Serial.available() > 0) {
// read the incoming byte:
serialinput = Serial.read();
if (serialinput == 'send')
{
lcd.print("received");
}
}
}
感謝您的幫助。 – user1739123