0
この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);
}
これは、以下の行を説明するコメントです。 'lcd.setCursor(0、1);'は "カーソルを0列目、1行目に設定する"という意味です – frarugi87