

You can give it a different name if you want like ‘menu_display’. Note that we have called the display ‘lcd’. When using a 20×4 LCD, change this line to LiquidCrystal_I2C(0x27,20,4) This is where you will need to change the default address to the address you found earlier if it happens to be different. The next step is to create an LCD object with the LiquidCrystal_I2C class and specify the address and dimensions.įor this, we use the function LiquidCrystal_I2C(address, columns, rows). #include // Library for I2C communication The other library imports wire.h automatically.

*When using the latest version of the LiquidCrystal_I2C library it is no longer needed to include the wire.h library in your sketch. In the rest of this tutorial, I will cover more of the built-in functions of this library. As mentioned earlier we need both the wire.h* and the LiquidCrystal_I2C library. First, the required libraries are included.
