LCD1602 & HD44780 is this the same thing?

johnwasser:
The 20x4 LCD should be compatible. Just use:

LiquidCrystal_I2C LCD();

const int LCDNumberOfColumns = 20;
const int LCDNumberOfRows = 4;
  LCD.begin(LCDNumberOfColumns, LCDNumberOfRows); // 20 Columns and 4 rows



instead of:


LiquidCrystal_I2C LCD();
const int LCDNumberOfColumns = 16;
const int LCDNumberOfRows = 2;
  LCD.begin(LCDNumberOfColumns, LCDNumberOfRows); // 20 Columns and 4 rows

Awesome, Thank you.