Removed example code and keep only the library.

Dependents:   Arch_GroveSerialLCD_Ex1 Arch_GroveSerialLCD_Ex2

Fork of Grove_Serial_LCD by Seeed Studio

Files at this revision

API Documentation at this revision

Comitter:
viswesr
Date:
Wed Oct 23 02:33:59 2013 +0000
Parent:
1:83ce5e2a368a
Commit message:
Document update

Changed in this revision

SerialLCD.cpp Show annotated file Show diff for this revision Revisions of this file
SerialLCD.h Show annotated file Show diff for this revision Revisions of this file
diff -r 83ce5e2a368a -r a166e203e4cf SerialLCD.cpp
--- a/SerialLCD.cpp	Wed Oct 23 02:19:38 2013 +0000
+++ b/SerialLCD.cpp	Wed Oct 23 02:33:59 2013 +0000
@@ -48,7 +48,7 @@
 
 /********** High level commands, for the user! **********/
 
-/// Initialize the Serial LCD Driver. SerialLCD Module initiates the communication.
+/// Initialize the Serial LCD Driver.
 void SerialLCD::begin()
 {
     wait_ms(2);
@@ -189,7 +189,7 @@
     Serial::putc(SLCD_CHAR_HEADER);
     Serial::putc(b);
 }
-/// Print char
+/// Print char 
 void SerialLCD::print(const char b[])
 {
     Serial::putc(SLCD_CHAR_HEADER);
diff -r 83ce5e2a368a -r a166e203e4cf SerialLCD.h
--- a/SerialLCD.h	Wed Oct 23 02:19:38 2013 +0000
+++ b/SerialLCD.h	Wed Oct 23 02:33:59 2013 +0000
@@ -12,6 +12,9 @@
 
 #include "mbed.h"
 
+/** Grove Serial LCD libray. The Serial LCD is connected to mbed through a UART port.
+ */
+
 class SerialLCD : public Serial {
 public: