#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
void setup() {
// put your setup code here, to run once:
pinMode(13, OUTPUT);
Serial.begin(9600);
lcd.init(); // initialize the lcd
// Print a message to the LCD.
lcd.backlight();
lcd.setCursor(5,0);
lcd.print("We are");
lcd.setCursor(4,1);
lcd.print("STEMBAYO");
}
void loop() {
// put your main code here, to run repeatedly:
}