我是初学者,我不知道下一步该怎么做:
在说:
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);
}
答案 0 :(得分:0)
语法:lcd.setCursor(col,row) lcd.setCursor(0,1); 这意味着您将光标设置为第0列和第1行 您的文本将显示在LCD的第0列和第1行。