0

我正在做一个使用 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(){
}
4

1 回答 1

0

LiquidCrystal_I2C lcd(0x27, 20, 4);

改成...

LiquidCrystal_I2C lcd(0x27, 16, 2); //对于 16x2 液晶显示器。然后编译并上传你的代码,它可能对你有帮助。

于 2016-06-09T00:34:02.313 回答