ต่อจอ LCD แล้วขึ้นแถบดำ

ช่วยด้วยค่ะต่อแล้วขึ้นแถบดำค่ะ


#include <LiquidCrystal.h>
// Creates an LCD object.
LiquidCrystal lcd(D6, D5, D1, D2, D3, D4);
void setup() {
lcd.begin(16, 2);
// Clears the LCD screen
lcd.clear();
// set the cursor to column 0, line 0
lcd.setCursor(0, 0);
// Print a message to the LCD.
lcd.print(" XXXXXXXXX ");
// set the cursor to column 0, line 1
lcd.setCursor(0, 1);
lcd.print(" XXXXXXX ");
delay(1000);
}
void loop() {
for (int positionCounter = 0; positionCounter < 13; positionCounter++) {
lcd.scrollDisplayLeft();
delay(150);
}
for (int positionCounter = 0; positionCounter < 29; positionCounter++) {
lcd.scrollDisplayRight();
// wait a bit:
delay(150);
}
for (int positionCounter = 0; positionCounter < 16; positionCounter++) {
lcd.scrollDisplayLeft();
delay(150);
}
delay(1000);
}
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่