Skip to content

Instantly share code, notes, and snippets.

View konstantinfarrell's full-sized avatar

Konstantin Farrell konstantinfarrell

View GitHub Profile
@konstantinfarrell
konstantinfarrell / Arduino-LCD-Keypad-Example.ino
Created May 11, 2016 04:29
A bare-minimum example of how to work with an LCD Keypad Shield from DF Robot for Arduino.
/*
* 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;