Programming Examples
Arduino program to print Hello word in LCD
Write a Arduino program to Print Hello word in LCD 16 x 2
#include
Adafruit_LiquidCrystal lcd(0);
void setup()
{
 lcd.begin(16,1);
 lcd.print("hello world");
}
void loop()
{
}
Output