jehankandt
Published © Apache-2.0

Arduino 16x2 LCD Display with I2C - Hello World

How To Print Hello World in 16x 2 LED with I2C

AdvancedFull instructions provided57,439
Arduino 16x2 LCD Display with I2C - Hello World

Things used in this project

Story

Read more

Schematics

Arduino 16x2 Display I2C Hello World

Arduino 16x2 Display I2C Hello World

Code

Arduino 16x2 Display I2C Hello World

C/C++
Arduino 16x2 Display I2C Hello World
//...............JehanKandy........................
//...........www.jehankandy.com....................
//........www.github.com/JehanKandy................

//include liquidCrystal_I2C.h 
//Tools -> Manage Libraries and type liquidCrystal_I2C

#include <LiquidCrystal_I2C.h>

//define I2C address......
LiquidCrystal_I2C lcd(0x27,16,2);


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

  lcd.setCursor(2,0);
  lcd.print("Hello World");

  lcd.setCursor(2,1);
  lcd.print("JehanKandy");

}

void loop() {


}
//.........coded by : JehanKandy....
//...........Thank You..............

Credits

jehankandt

jehankandt

21 projects • 8 followers

Comments