我正在做一个小项目,使用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(){
}
答案 0 :(得分:0)
LiquidCrystal_I2C lcd(0x27,20,4);
改为......
LiquidCrystal_I2C lcd(0x27,16,2); //适用于16x2 lcd。 然后编译并上传你的代码,它可能对你有帮助。