Sunday 16 September 2018

Keypad and LCD part #2 How to interface 16x2 LCD display with Arduino U...



Arduino coding:
#include <LiquidCrystal.h>
// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = 13, en = 12, d4 = 11, d5 = 10, d6 = 9, d7 = 8;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
int i;
void setup() {
  // set up the LCD's number of columns and rows:
  lcd.begin(16, 2);
}
void loop()
{
  lcd.setCursor (0, 1);
  lcd.print(" DIGITAL UNIVERSE");
  lcd.scrollDisplayRight();
  // Turn on the display:
  lcd.display();
  delay(500);
  lcd.blink(); //Displays the blinking LCD cursor
  delay(500);
  lcd.noBlink(); // Turns off the blinking LCD cursor
  delay(500);
  lcd.cursor();
  lcd.clear();
   //Turn off the display:
  lcd.noDisplay();
  //delay(500);
}

Embedded systems basics:
Embedded systems step by step video guide
-using PROTEUS ISIS professional and Arduino IDE software

Click below link for interface Keypad with Arduino UNO
https://youtu.be/cnPb4pObkXc

Click below link for the gas sensor
https://youtu.be/ALm-okkKRPY

Click below link for PIR sensor
https://youtu.be/4gRo1ijpMmQ

Click below link for the temperature sensor
https://youtu.be/1GJC_6eF7Xg

Click below link for vibration sensor
https://youtu.be/jiJAhxa687s

Click below link for M shape led blinking
https://youtu.be/S46J4L4KOu4

Subscribe To My Channel and Get More Great Ideas
https://bit.ly/2UlZJcb

Click below link for more embedded topics
https://digiuniverselife.blogspot.in

Contact Us
Facebook
https://bit.ly/2NAeebK
Twitter
https://bit.ly/2x3R1p1
If you like this Video Please like and Share with your friends...
Basics of embedded systems -Digital Universe
Thanking you..

No comments: