Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Grove_Serial_LCD by
Revision 2:a166e203e4cf, committed 2013-10-23
- 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 |
--- 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);
--- 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: