32 文字を超えるものを表示したい場合。LCDをスクロールしたいのですが、コマンドフラグ0x10
を試してみましたが、誰かが私を正しい方向に向けることができます。
質問する
3592 次
1 に答える
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 行目に新しいテキストを入力するアクションを手動で作成する必要があります。
于 2012-11-28T12:01:19.307 に答える