newproyecto
Published © GPL3+

How to use LCD I2C

Do you want to display text and you don't know how to do it? Here is the complete guide!

BeginnerProtip30 minutes6,151
How to use LCD I2C

Things used in this project

Story

Read more

Schematics

Scheme

Code

Code

Arduino
#include <Wire.h>                 
#include <LiquidCrystal_I2C.h>  

LiquidCrystal_I2C lcd(0x27,16,2);

void setup() {
    lcd.init();                     
  lcd.backlight();  
}

void loop() {
  lcd.setCursor(0,0);
  lcd.print(" Hello, World!!");
  lcd.setCursor(0,1);
  lcd.print(" 16x2 LCD I2C");  
}

Credits

newproyecto
3 projects • 4 followers
Hello everyone, my name is Antonio and I love programming and doing projects with Arduino and I hope these projects will help you.
Contact

Comments

Please log in or sign up to comment.