top of page
LCD interfacing with Arduino
Code for 16 * 2 LCD Display interfacing using Arduino with Proteus

//Code:
#include<LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup()
{
lcd.begin (16, 2);
}
void loop()
{
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Hello");
delay(1000);
lcd.setCursor(0,1);
lcd.print("CS01");
delay(1000);
lcd.clear();
delay(500);
}
bottom of page