0

如何使用 Arduino 在 LCD 的两行上连续显示长文本?

我正在尝试使用 Arduino 在LCD上显示串行数据,但我输入的句子在 LCD 的第一行之后被截断。

4

1 回答 1

2

基本上,要使用最常见的 LCD,Arduino 有一个库

示例代码是:

LiquidCrystal lcd(12, 11, 5, 4, 3, 2); // Here is the pinout of your LCD. Read the tutorial to understand what it means.

void setup() {
    // Set up the LCD's number of columns and rows:
    lcd.begin(16, 2);

    // Prints the first line which is 20 characters wide, padded with spaces, and the 'world!' will be on second line.
    lcd.print("hello,              world!");
}

void loop() {
    // Set the cursor to column 0, line 1 (note: line 1 is
    // the second row, since counting begins with 0):
    lcd.setCursor(0, 1);

    // Print the number of seconds since reset:
    lcd.print(millis()/1000);
}

无论您在 LCD 上打印什么,都被视为一行。因此,要在两行上打印文本,您需要用空格填充第一行,直到达到该行的字符数。然后下面的所有文本将显示在第二行。

于 2013-06-25T23:22:34.947 回答