Skip to content

Instantly share code, notes, and snippets.

@elktros
Created February 24, 2021 16:04
Show Gist options
  • Save elktros/0aaaaf28f5a9433c73cff48f506cbf76 to your computer and use it in GitHub Desktop.
Save elktros/0aaaaf28f5a9433c73cff48f506cbf76 to your computer and use it in GitHub Desktop.
Display text on I2C LCD using ESP8266 NodeMCU.
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x3F, 16, 2);
void setup()
{
lcd.init();
lcd.backlight();
lcd.setCursor(0,0);
lcd.print(" I2C LCD with ");
lcd.setCursor(0,1);
lcd.print("ESP8266 NodeMCU");
}
void loop()
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment