Wrong address for the LCD, address is 0x27 for my 1602 display rather than 0x3F
main.c
line 160 i2c_lcd_init(0x27, 0, 1, 2, 4, 5, 6, 7, 3); // set the LCD address to 0x3F for a 16 chars and 2 line display
Code is running on an Uno

Also reduced I2C clock from 600kHz to 100kHz for more reliable operation.
twimaster.h
line 26 /* I2C clock in Hz */
line 27 #defineSCL_CLOCK100000L // PCF8574 can work from 100KHz to 400KHz max.
main.c
line 160 i2c_lcd_init(0x27, 0, 1, 2, 4, 5, 6, 7, 3); // set the LCD address to 0x3F for a 16 chars and 2 line display
Code is running on an Uno

Also reduced I2C clock from 600kHz to 100kHz for more reliable operation.
twimaster.h
line 26 /* I2C clock in Hz */
line 27 #defineSCL_CLOCK100000L // PCF8574 can work from 100KHz to 400KHz max.
Comment