#include <LiquidCrystal.h>
LiquidCrystal lcd(7,8,9,10,11,12);
void setup()
{
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.clear();
lcd.print("Hello");
}
void loop() {
// put your main code here, to run repeatedly:
}
#include <LiquidCrystal.h>
LiquidCrystal lcd(7,8,9,10,11,12);
void setup()
{
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.clear();
lcd.print("Hello");
}
void loop() {
// put your main code here, to run repeatedly:
}