Parkmoonsu윤원호정다연
Published © MPL-2.0

20 x 4 Using the LCD #Extra

This time we will look at how to use a 20x4 LCD as an extra part of the Air Meter Making project.

BeginnerShowcase (no instructions)1 hour33,222
20 x 4 Using the LCD #Extra

Things used in this project

Story

Read more

Schematics

LCD SCHEMATICS

Please connect correctly!

Code

LCD CODE

Arduino
Display your own message!
#include <Wire.h>                      
#include <LiquidCrystal_I2C.h>       

LiquidCrystal_I2C lcd(0x3F,20,4);     

void setup()

{

  lcd.init();                    

  // Print a message to the LCD.

  lcd.backlight();                

  lcd.setCursor(0,0);           

  lcd.print("Hello!");

  lcd.setCursor(0,1);             

  lcd.print("Funny!");

  lcd.setCursor(3,2);            

  lcd.print("Enjoy!");

  lcd.setCursor(8,3);             

  lcd.print("Arduino!");



}

void loop()
{

}

Credits

Parkmoonsu

Parkmoonsu

1 project • 6 followers
A Korean high school student who wants to learn about Arduino!
윤원호

윤원호

1 project • 7 followers
Ordinary high school student who wants to enter science and engineering college
정다연

정다연

1 project • 4 followers

Comments