Description
1602 LCD screen
Standard 16×2 character LCD display. It has a basic 16 character by 2 line display with a blue background with white characters.
Example Sketch & Diagram
Code
#include <LiquidCrystal.h> LiquidCrystal lcd(12, 13, 5, 4, 3, 2); void setup() { lcd.begin(16,2); } void loop() { lcd.clear(); lcd.setCursor(0,0); lcd.print(" BotShop"); delay(800); lcd.clear(); lcd.setCursor(0,0); lcd.print(" IS AWESOME"); delay(800); }
Reviews
There are no reviews yet.