technoesolution
Published © CC BY-NC-SA

Interface LCD Display & I2C Module With Arduino Uno

In this tutorial we are going to interface LCD I2C module with Arduino Uno, To avoid complicated circuit of LCD & Arduino.

BeginnerFull instructions provided30 minutes18,201
Interface LCD Display & I2C Module With Arduino Uno

Things used in this project

Story

Read more

Schematics

Circuit Diagram

Follow Circuit Diagram to make connection.

Connect I2C Module with LCD display parallel. As shown in circuit.

Arduino To I2C Module Connection :-

5V - VCC

GND - GND

A4 - SDA

A5 - SCL

I2C Module To LCD Connection

Code

Arduino Code

C/C++
Simply Copy the following code & upload in your Arduino IDE software.
#include <Wire.h>
 
#include <LiquidCrystal_I2C.h>

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

void setup()
{
 
  lcd.backlight();
  
  lcd.setCursor(0,0);
  
  lcd.print("Hello world!");

  lcd.setCursor(0,1);
    
  lcd.print("TechnoEsolution");

}


void loop()
{
}

Credits

technoesolution

technoesolution

23 projects • 15 followers
Youtuber | Electrical Engineer | Electronics Lover | Article Writer | Project Developer |

Comments