#include <LiquidCrystal_I2C.h>

// Initialize the LCD with the I2C address (usually 0x27 or 0x3F)
// 16, 2 represents a 16x2 LCD module
LiquidCrystal_I2C lcd(0x27, 16, 2);

void setup() {
  // Initialize the LCD
  lcd.init();
  lcd.clear();         
  lcd.backlight();      // Make sure backlight is on

  // Turn on the backlight
  lcd.backlight();

  // Display a welcome message
  lcd.setCursor(0, 0); // Set cursor to the first column of the first row
  lcd.print("Hello, World!");

  lcd.setCursor(0, 1); // Set cursor to the first column of the second row
  lcd.print("I2C LCD Test");
}

void loop() {
  // No need for additional code in this simple example
}
uno:A5.2
uno:A4.2
uno:AREF
uno:GND.1
uno:13
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:1
uno:0
uno:IOREF
uno:RESET
uno:3.3V
uno:5V
uno:GND.2
uno:GND.3
uno:VIN
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5
lcd1:GND
lcd1:VCC
lcd1:SDA
lcd1:SCL