Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Hack star
Published © MIT

Learn To Use LCD 1602 (I2C & Parallel) With Arduino UNO 📺

Learn to use Liquid Crystal Display with Arduino using a free Arduino Simulator 👍 No Hardware Necessary

BeginnerProtip1 hour44,392

Things used in this project

Story

Read more

Schematics

chrome_8uc04lnynz_rDTO5av1la.png

Code

Arduino UNO and LCD project

Arduino
/* Hello Wokwi! */

#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27, 16, 2);

void setup() {
  lcd.init();
  lcd.backlight();
  lcd.setCursor(1, 0);
  lcd.print("Hello, Wokwi!");
}

void loop() {

}

Credits

Hack star
75 projects • 128 followers
an Arduino enthusiast and an electronic hobbyist
Contact

Comments

Please log in or sign up to comment.