-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のボードに動作していない: ArduinoのCコードは
を私は何回か試してみました、それは私のために動作しないでしょう。
私の結果は以下の通りであった。
何をしようとしているのか、そのエラーについて詳しくご記入ください。外部の画像リンクは時代遅れになり、質問を役に立たなくします。 – roelofs
''それは私にとってはうまくいかないでしょう」「これはどういう意味ですか - あなたの結果は何でしたか(あなたの質問にそれらを編集できます)! –