2017-11-09 12 views
-3
// include the library code: 
#include <LiquidCrystal.h> 

const int rs = 13, en = 12, d4 = 5, d5 = 4, d6 = 3, d7 = 2; 
LiquidCrystal lcd(rs, en, d4, d5, d6, d7); 

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() { 
    // Turn on the display: 
    lcd.display(); 
    delay(500); 
} 

Arduinoのボードに動作していない: enter image description hereArduinoのCコードは

を私は何回か試してみました、それは私のために動作しないでしょう。

私の結果は以下の通りであった。

+1

何をしようとしているのか、そのエラーについて詳しくご記入ください。外部の画像リンクは時代遅れになり、質問を役に立たなくします。 – roelofs

+2

''それは私にとってはうまくいかないでしょう」「これはどういう意味ですか - あなたの結果は何でしたか(あなたの質問にそれらを編集できます)! –

答えて

0

あなたは、コントラストを調整する必要があり、表示しているように見えますか?

BTW:Arduinoとディスプレイの間のワイヤが正しい場合、私はあなたの写真をチェックしません。

0

セットアップにlcd.display()を追加してみてください。

関連する問題