//Sketch.ino
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
// Make sure to add in library manager
LiquidCrystal_I2C lcd(0x27,16,2); // lcd is an object 0x27 is the address of the device , 16 and 2 are the dimensions
void setup() {
lcd.begin(16,2);// SCreen aspect ratio
lcd.backlight();
lcd.clear();
lcd.setCursor(4,0);// Column , Row
lcd.print("Name");
}
void loop() {
}