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 hour33,865

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

Hack star

75 projects โ€ข 97 followers
an Arduino enthusiast and an electronic hobbyist

Comments