This library allows an Arduino board to control liquid crystal displays (LCDs) based on the Hitachi HD44780 (or a compatible) chipset, which is found on most text-based LCDs. Virtual base class for (LCDs) devices, allows you to use one library for LiquidCrystal displays and LiquidCrystal_I2C displays as objects of child classes. Allows you to create general LCD object and use same methods for different derived classes.
Tip
|
To find the latest versions, refer to this link. TIP: Online library showcase: Wokwi Simulation. |
LiquidCrystal_Base => Base virtual(abstact) class. Has methods for all derived classes. ├── LiquidCrystal => Implementation of standart Arduino LCD library as derived class └── LiquidCrystal_I2C => Implementation of I2C LCD library as derived class
-
Added I2C_scanner in examples
-
Added Complete Test in examples. Also added readme file.