我不知道在这个arduino例子中下一步该做什么

时间:2017-01-04 08:21:32

标签: arduino

我是初学者,我不知道下一步该怎么做:

在说:

set the cursor to column 0, line 1

我不知道该怎么做

#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

void setup() {
  // set up the LCD's number of columns and rows:
  lcd.begin(16, 2);
  // Print a message to the LCD.
  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);
}

1 个答案:

答案 0 :(得分:0)

语法:lcd.setCursor(col,row) lcd.setCursor(0,1); 这意味着您将光标设置为第0列和第1行 您的文本将显示在LCD的第0列和第1行。