Yun Jin Yonggledel임동교
Published © GPL3+

Innovation Lab #8: LCD

A Bongilcheon High School Innovation Lab project.

BeginnerShowcase (no instructions)25 minutes894
Innovation Lab #8: LCD

Things used in this project

Story

Read more

Schematics

LCD_Rotary Potentiometer

LCD_Rotary Potentiometer

Code

LCD

Arduino
Print the letters on the LCD screen and turn the potentiometer to control the brightness of the LCD screen.
#include <LiquidCrystal.h>

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

void setup() {
  lcd.begin(16, 2);
  lcd.clear();
  lcd.print("hello, world!");
}

void loop() {
  lcd.setCursor(0, 1);
  lcd.print("Innovation Lab");
}

Credits

Yun Jin Yong
6 projects • 10 followers
Contact
gledel
100 projects • 116 followers
Looking back on my childhood, I was happy when I was making something and I was proud of myself. "Making is instinct!"
Contact
임동교
0 projects • 12 followers
Contact

Comments

Please log in or sign up to comment.