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/ Explanation: