top of page

LED screen
Arduino output
01
DESCRIPTION & MATERIALS
This is a simple circuit that enables an LED screen to light up with text of your choice. Material used are:
-Arduino Uno
-220ohms Resistor
-LCD 16x2
-Potentiometer
02
CODES
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("ESTIMATE 2021");
}
void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
lcd.setCursor(0, 1);
// print the number of seconds since reset:
lcd.print(millis() / 1000);
}
03
OUTPUT

04
ANALYSIS
The system run smoothly and without fault.
bottom of page