From 2ef3bd54f41ebdca1ca4d545143b003ab282293a Mon Sep 17 00:00:00 2001 From: geek2003 Date: Thu, 23 Feb 2017 16:53:48 +0000 Subject: [PATCH] Added back after stupid mistake --- draft/overlay/adafruit_lcd.md | 43 +++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 draft/overlay/adafruit_lcd.md diff --git a/draft/overlay/adafruit_lcd.md b/draft/overlay/adafruit_lcd.md new file mode 100644 index 0000000..e7e4d04 --- /dev/null +++ b/draft/overlay/adafruit_lcd.md @@ -0,0 +1,43 @@ + +#Adafruit 16x2 Character LCD + +The Adafruit plate makes it easy to use a 16x2 Character LCD. Most LCD use lots of GPIO pins but with this just using I2C you only need two pins. The keypad gives you an easy way to input to the display and it comes with an easy to use python library to make it super easy to program. Note that the same pinout applies to both positive, negative and normal LCD. + +To install: +```bash +sudo apt-get update +sudo apt-get install build-essential python-dev python-smbus python-pip git +sudo pip install RPi.GPIO +git clone https://github.com/adafruit/Adafruit_Python_CharLCD.git +cd Adafruit_Python_CharLCD +sudo python setup.py install +```