LiquidCrystal Library

LiquidCrystal Library Using The Library Basic Setup In your main sketch file //—– LCD DISPLAY —– #include <LiquidCrystal.h> LiquidCrystal lcd(12, 10, 11, 9, 8, 7, 6); //7 wire usage: (rs, rw, enable, d4, d5, d6, d7) If you want to use it in other files also #include <LiquidCrystal.h> extern LiquidCrystal lcd; Initialise //—– SETUP LCD […]

Read More