在没有I2C的情况下将NodeMcu与1602 LCD连接

时间:2019-05-23 23:22:54

标签: arduino esp8266 nodemcu

我想连接Nodemcu esp8266和I2C1602。我只想显示esp8266在I2C上的一些文本,而中间没有其他传感器/硬件。 Nodemcu和I2C之间的引脚应该连接什么? 如果有人能告诉我Nodemcu和Arduino引脚的比较,我将非常感激?

1 个答案:

答案 0 :(得分:0)

实际上,有几个示例可以做到这一点,但是对于普通的16x2 LCD转换器的I2C连接,有一个libraryenter image description here 只需获取库并将其放在库目录中,然后使用示例之一:

#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27, 20, 4); // set the LCD address to 0x27 for a 16 chars and 2 line display

void setup()
{
    lcd.init(); // initialize the lcd
    // Print a message to the LCD.
    lcd.backlight();
    lcd.setCursor(3, 0);
    lcd.print("Hello, world!");
    lcd.setCursor(2, 1);
    lcd.print("Ywrobot Arduino!");
    lcd.setCursor(0, 2);
    lcd.print("Arduino LCM IIC 2004");
    lcd.setCursor(2, 3);
    lcd.print("Power By Ec-yuan!");
}

void loop()
{
}