aboutsummaryrefslogtreecommitdiff
path: root/Projects/SerialToLCD/SerialToLCD.txt
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-04-14 21:47:02 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-04-14 21:47:02 +0000
commite649e3acd22981f3c661a161e37a0dc293949691 (patch)
tree746d86e183ad987764758b1f908f456acbe8120d /Projects/SerialToLCD/SerialToLCD.txt
parentad9c999b064f6456f5b6876856000c7a139db5b9 (diff)
Minor formatting updates to the SerialToLCD project.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2159 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects/SerialToLCD/SerialToLCD.txt')
-rw-r--r--Projects/SerialToLCD/SerialToLCD.txt48
1 files changed, 47 insertions, 1 deletions
diff --git a/Projects/SerialToLCD/SerialToLCD.txt b/Projects/SerialToLCD/SerialToLCD.txt
index 8bf2102a..84237b45 100644
--- a/Projects/SerialToLCD/SerialToLCD.txt
+++ b/Projects/SerialToLCD/SerialToLCD.txt
@@ -47,5 +47,51 @@
* designed to use the Minimum USB AVR board, however it can be modified to suit other hardware
* if desired.
*
- * See comments in the SerialToLCD.c source file for hardware pinouts of the Minimus board.
+ * LCD Datasheet: http://www.sparkfun.com/datasheets/LCD/HD44780.pdf \n
+ * More Information: http://en.wikipedia.org/wiki/HD44780_Character_LCD \n
+ *
+ * Below are the connections between the AVR Minimus board and LCD.
+ *
+ * <table>
+ * <tr>
+ * <td><b>AVR Pin:</b></td>
+ * <td><b>HD44780 LCD Pin:</b></td>
+ * </tr>
+ * <tr>
+ * <td>VCC</td>
+ * <td>VCC</td>
+ * </tr>
+ * <tr>
+ * <td>GND</td>
+ * <td>GND</td>
+ * </tr>
+ * <tr>
+ * <td>PD0</td>
+ * <td>DB4</td>
+ * </tr>
+ * <tr>
+ * <td>PD1</td>
+ * <td>DB5</td>
+ * </tr>
+ * <tr>
+ * <td>PD2</td>
+ * <td>DB6</td>
+ * </tr>
+ * <tr>
+ * <td>PD3</td>
+ * <td>DB7</td>
+ * </tr>
+ * <tr>
+ * <td>PD4</td>
+ * <td>/RS</td>
+ * </tr>
+ * <tr>
+ * <td>GND</td>
+ * <td>/RW</td>
+ * </tr>
+ * <tr>
+ * <td>PD7</td>
+ * <td>/E</td>
+ * </tr>
+ * </table>
*/