Devices & Components
Arduino Uno Rev3
Breadboard (generic)
Alphanumeric LCD, 16 x 2
Jumper wires (generic)
Project description
Code
Code
c_cpp
Here added project code.
1#include <LiquidCrystal.h> 2int Contrast = 60; 3LiquidCrystal lcd(12, 11, 5, 4, 3, 2); 4 5void setup() 6{ 7 analogWrite(6, Contrast); 8 lcd.begin(16, 2); 9} 10void loop() 11{ 12 lcd.setCursor(0, 0); 13 lcd.print("Hello Friends"); 14 15 lcd.setCursor(0, 1); 16 lcd.print("Eid Mubarak"); 17} 18
Downloadable files
Pin Diagram
Here is the pin diagram of the circuit
Pin Diagram

Pin Diagram
Here is the pin diagram of the circuit
Pin Diagram

Comments
Only logged in users can leave comments