DrOpShOtZ
Published

Arduino 16×2 LCD Display "Hello World"

Arduino projects to display a messages

BeginnerProtip6,954
Arduino 16×2 LCD Display "Hello World"

Things used in this project

Hardware components

Jumper wires (generic)
Jumper wires (generic)
×18
Arduino Nano R3
Arduino Nano R3
×1
RGB Backlight LCD - 16x2
Adafruit RGB Backlight LCD - 16x2
×1
Solderless Breadboard Full Size
Solderless Breadboard Full Size
×1
Trimmer Potentiometer, 10 kohm
Trimmer Potentiometer, 10 kohm
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Arduino 16×2 LCD Display "Hello World"

The circuit diagram

Code

Arduino 16×2 LCD Display "Hello World"

Arduino
#include <LiquidCrystal.h>

LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

void setup() 
{
	lcd.begin(16, 2);
	lcd.clear();
}

void loop() 
{
	lcd.print(" Hello world!");
	lcd.setCursor(0, 1);
}

Credits

DrOpShOtZ
12 projects • 17 followers
Contact me from Discord. DrOpShOtZ#6290
Contact

Comments

Please log in or sign up to comment.