2017-01-04 15 views
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); 
} 
+0

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

答えて

0

構文:lcd.setCursor(COL、行) lcd.setCursor(0,1)。 これは、カーソルを0番目の列と1番目の行に設定していることを意味します。 テキストはLCDの0番目の列と1番目の行に表示されます。

関連する問題