16X2 Display With Arduino

 Subscribe Now  

Instagram   👈🏻 If there is any problem to make it, message me on Instagram and I will reply within 24 hours.

Facebook

                                Arduino Code :- 


/*

This Code Created by Technical idEas(YT)

Channel Link :-  https://youtube.com/channel/UCCJyR_wnt3SxhErsSUP9Wrw

*/

// include the library code:

#include <LiquidCrystal.h>

const int rs = 7, en = 9, d4 = 10, d5 = 11, d6 = 12, d7 = 13;

LiquidCrystal lcd(rs, en, d4, d5, d6, d7);

void setup()

{

lcd.begin(16, 2);

    lcd.print(millis() / 1000);

}

void loop()

{

  lcd.setCursor(0,0);

  lcd.print("Hey Friends");

  delay(4000);

  lcd.clear();

  lcd.setCursor(0,0);

  lcd.print("I am Samrat");

  delay(3000);

  lcd.clear();

  lcd.setCursor(0,0);

  lcd.print("I am a YouTuber    ");

  delay(3000);

  lcd.clear();

  lcd.setCursor(0,0);

  lcd.print("Channel Name     ");

  delay(3000);

  lcd.setCursor(0,0);

  lcd.print("Technical idEas   ");

  delay(5000);

  lcd.setCursor(0,0);

  lcd.print("Subscribe Now         ");

  delay(5000);

  lcd.setCursor(0,0);

  lcd.print("TaTa Byee     ");

  delay(5000);


}







Comments

Post a Comment

Popular posts from this blog

Servo Motor Control Using By Bluetooth HC-05

Best IOT Project By Technical idEas