Arduino Reference to LiquidCrystal_I2c functions

Does anyone know where to find a more adequate reference to the functions in the LiquidCrystal_I2C library than is found on the Arduino website?

Adrifran39:
Does anyone know where to find a more adequate reference to the functions in the LiquidCrystal_I2C library than is found on the Arduino website?

There is no single LiquidCrystal_I2C library. It seems that everyone who writes such a library gives it the same name. Therefore there is no single correct answer to your question.

At the current time your best choice is to use the library written by Francisco Malpartidia, also known as fm. You can get it here: FM New LiquidCrystal This is a replacement for the 'official' LiquidCrystal library and as such all of the functions are the same.

Use the sketch found here i2cLCDguesser to determine the parameters to use with that library.

Use the tutorials found here LCD Displays (Blue and YELLOW) with I2C/TWI Interface to get started using the library.

Don