#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup()
{
lcd.begin(16, 2);
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("mks");
lcd.setCursor(0, 1);
lcd.print("ece");
delay(2000);
}
void loop()
{
}
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup()
{
lcd.begin(16, 2);
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("mks");
lcd.setCursor(0, 1);
lcd.print("ece");
delay(2000);
}
void loop()
{
}