#include <LiquidCrystal.h>
int rs=12, en=11, d4=5, d5=4, d6=3, d7=2;
LiquidCrystal Lcd(rs,en,d4,d5,d6,d7);
void setup() {
Lcd.begin(16,2);
Lcd.print(" hello, rashmi");
}
void loop() {
Lcd.setCursor(0,1);
}
#include <LiquidCrystal.h>
int rs=12, en=11, d4=5, d5=4, d6=3, d7=2;
LiquidCrystal Lcd(rs,en,d4,d5,d6,d7);
void setup() {
Lcd.begin(16,2);
Lcd.print(" hello, rashmi");
}
void loop() {
Lcd.setCursor(0,1);
}