NodeMCU1.0を使用してLCDにテキストを表示する小さなプロジェクトを行っています。スケッチをアップロードすると「空白の画面のみ」でテキストが表示されない問題はありますか? 何か助けはありますか?
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
// Set the LCD address to 0x27 for a 16 chars and 2 line display
// Arduino UNO => PIN 4 = SCL, PIN 5 = SDA
// NodeMCU Dev Kit => D1 = SCL, D2 = SDA
LiquidCrystal_I2C lcd(0x27, 20, 4);
void setup()
{
// initialize the LCD
lcd.begin();
// Turn on the blacklight and print a message.
lcd.backlight();
lcd.print("Hello World");
}
void loop(){
}