This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Basic example code for working with an LCD Keypad Shield | |
* from DF Robot and an Arduino Uno. | |
* Written by: Konstantin Farrell | |
*/ | |
#include <LiquidCrystal.h> | |
LiquidCrystal lcd(8, 9, 4, 5, 6, 7); | |
int readkey; |
NewerOlder