Minor formatting updates to the SerialToLCD project.

This commit is contained in:
Dean Camera 2012-04-14 21:47:02 +00:00
parent 2e757d8c38
commit bd3f6794dd
4 changed files with 59 additions and 38 deletions

View file

@ -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>
*/