Library implementing the TextDisplay interface for the Serial LCDs as sold by Sparkfun etc...

Dependencies:   TextDisplays

Files at this revision

API Documentation at this revision

Comitter:
giryan
Date:
Sat Aug 28 14:00:41 2010 +0000
Parent:
0:bd978ddc0470
Child:
2:60947d4b0efe
Commit message:

Changed in this revision

TextLCD_Serial.cpp Show annotated file Show diff for this revision Revisions of this file
TextLCD_Serial.h Show annotated file Show diff for this revision Revisions of this file
--- a/TextLCD_Serial.cpp	Fri Aug 27 13:01:14 2010 +0000
+++ b/TextLCD_Serial.cpp	Sat Aug 28 14:00:41 2010 +0000
@@ -1,3 +1,6 @@
+// Copyright (c) 2010 mwaddilove
+// Released under the MIT License: http://mbed.org/license/mit
+
 #include "TextLCD_Serial.h"
 
 //! Constructor
--- a/TextLCD_Serial.h	Fri Aug 27 13:01:14 2010 +0000
+++ b/TextLCD_Serial.h	Sat Aug 28 14:00:41 2010 +0000
@@ -1,15 +1,17 @@
+// Copyright (c) 2010 mwaddilove
+// Released under the MIT License: http://mbed.org/license/mit
+
 #pragma once
 
 #include "TextDisplay.h"
 
-//! class that implements TextDisplay, for a 2x16 (2x20 to come) serial LCD, controlled by the HD44780
+//! class that implements TextDisplay, for a 2x16 (2x20 etc. to come) serial LCD, controlled by the HD44780
 class TextLCD_Serial : public TextDisplay
 {
 public:
     //! Constructor
     TextLCD_Serial(PinName tx, PinName rx, char const * name = NULL);
     
-    
     virtual void character(int column, int row, int c);
     
     virtual int rows() 
@@ -20,14 +22,10 @@
     {
         return 16;
     }
-    
-
  
     /** Clear the screen and locate to 0,0 */
     virtual void cls();
 
-
-    
     
 protected:
     //! Set the LCD's cursor position