当我想要显示大于32个字符的内容时。我希望LCD能够滚动,我已经尝试过命令标志0x10
可以有人指向我正确的方向。
答案 0 :(得分:0)
您尚未表明是要尝试水平滚动还是垂直滚动。
水平滚动在lcd库中是原生的。使用autoscroll或scrollDisplayLeft / Right
// include the library code:
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16,2);
}
void loop() {
// set the cursor to (16,1):
lcd.setCursor(16,1);
// set the display to automatically scroll:
lcd.autoscroll();
// print from 0 to 9:
for (int thisChar = 0; thisChar < 10; thisChar++) {
lcd.print(thisChar);
delay(500);
}
// turn off automatic scrolling
lcd.noAutoscroll();
// clear screen for the next loop:
lcd.clear();
}
对于垂直滚动,您需要手动创建一个动作,将文本从第2行复制到第1行,并使用新文本填充第2行。