Hackster is hosting Hackster Cafe: Open Hardware Summit. Watch the stream live on Friday!Hackster is hosting Hackster Cafe: Open Hardware Summit. Stream on Friday!
jehankandtsadun_j
Published © Apache-2.0

Arduino LCD Display

LCD display with Arduino

IntermediateFull instructions provided725
Arduino LCD Display

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
RGB LCD Shield Kit, 16x2 Character Display
RGB LCD Shield Kit, 16x2 Character Display
×1
Breadboard (generic)
Breadboard (generic)
×1
Rotary potentiometer (generic)
Rotary potentiometer (generic)
×1
Jumper wires (generic)
Jumper wires (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE
Arduino Web Editor
Arduino Web Editor

Story

Read more

Schematics

Arduino LCD Display

Arduino LCD Display

Code

Arduino LCD Display

C/C++
Arduino LCD Display
//......................JEHNANKANDY....................
//....................LCD display 16x2.................




#include <LiquidCrystal.h>
LiquidCrystal lcd (1 ,2, 4, 5, 6, 7);

void setup() {
  lcd.begin(16,2);
  lcd.setCursor(3,0);
  lcd.println("WELCOME");
  delay(500);

  lcd.setCursor(4,1);
  lcd.println("ARDUINO");
  delay(1000);

  lcd.clear();
  delay(1000);

  lcd.setCursor(1,0);
  lcd.println("Make By ");
  delay(200);

  lcd.clear();
  delay(100);
    
  lcd.setCursor(1,0);
  lcd.println("Jehan ");

  delay(100);

  lcd.setCursor(1,1);
  lcd.println("Weerasuriya ");

  lcd.clear();
  delay(1000);

}
int val=2;
void loop() {
      String text = "LCD Tutorial";
      lcd.setCursor(2,1);
      lcd.print(text);

      lcd.setCursor(5,3);
      lcd.print(val);

      val++;
      delay(100);
      
          lcd.clear();
          delay(1000);
        
      for (int i = 0; i <= 13; i++){
        lcd.setCursor(i,0);
        lcd.println("==>");
        delay(500);
      }    
          lcd.clear();
          delay(1000);
        
   }
 
//................Develop by : JEHANKANDY

Credits

jehankandt
21 projects • 8 followers
Contact
sadun_j
0 projects • 1 follower
Contact

Comments

Please log in or sign up to comment.