|
1 |
| -RaspberryPi |
2 |
| -================================================================================= |
3 |
| - Name : PCD8544 |
4 |
| - Version : 0.1 |
| 1 | +Raspberry Pi PCD8544 Library |
| 2 | +============================ |
| 3 | +A simple PCD8544 LCD (Nokia3310/5110) driver. Target board is Raspberry Pi. |
| 4 | +This driver uses 5 GPIOs on target board with a bit-bang SPI implementation (hence, may not be as fast but seems fast enough). |
| 5 | +Makes use of WiringPI-library of _Gordon Henderson_ (https://projects.drogon.net/raspberry-pi/wiringpi/) |
5 | 6 |
|
6 |
| - Copyright (C) 2010 Limor Fried, Adafruit Industries |
7 |
| - CORTEX-M3 version by Le Dang Dung, 2011 [email protected] (tested on LPC1769) |
8 |
| - Raspberry Pi version by Andre Wussow, 2012, [email protected] |
| 7 | +Copyright (C) 2010 _Limor Fried_, _Adafruit Industries_ |
| 8 | +CORTEX-M3 version by _Le Dang Dung_, 2011 [email protected] (tested on LPC1769) |
| 9 | +Raspberry Pi version by _Andre Wussow_, 2012, [email protected] |
9 | 10 |
|
10 |
| - Description : |
11 |
| - A simple PCD8544 LCD (Nokia3310/5110) driver. Target board is Raspberry Pi. |
12 |
| - This driver uses 5 GPIOs on target board with a bit-bang SPI implementation |
13 |
| - (hence, may not be as fast). |
14 |
| - Makes use of WiringPI-library of Gordon Henderson (https://projects.drogon.net/raspberry-pi/wiringpi/) |
| 11 | +For more informations please visit http://binerry.de/post/25787954149/pcd8544-library-for-raspberry-pi. |
15 | 12 |
|
16 |
| - Recommended connection (http://www.raspberrypi.org/archives/384): |
17 |
| - LCD pins Raspberry Pi |
18 |
| - LCD1 - GND P06 - GND |
19 |
| - LCD2 - VCC P01 - 3.3V |
20 |
| - LCD3 - CLK P11 - GPIO0 |
21 |
| - LCD4 - Din P12 - GPIO1 |
22 |
| - LCD5 - D/C P13 - GPIO2 |
23 |
| - LCD6 - CS P15 - GPIO3 |
24 |
| - LCD7 - RST P16 - GPIO4 |
25 |
| - LCD8 - LED P01 - 3.3V |
26 |
| - |
27 |
| - References : |
28 |
| - http://www.arduino.cc/playground/Code/PCD8544 |
29 |
| - http://ladyada.net/products/nokia5110/ |
30 |
| - http://code.google.com/p/meshphone/ |
31 |
| - |
32 |
| -================================================================================ |
| 13 | +License |
| 14 | +------- |
33 | 15 | This library is free software; you can redistribute it and/or
|
34 | 16 | modify it under the terms of the GNU Lesser General Public
|
35 | 17 | License as published by the Free Software Foundation; either
|
|
0 commit comments