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 SerLCDv25 by
Revision 1:65590e1ed8ed, committed 2013-04-05
- Comitter:
- Mach5
- Date:
- Fri Apr 05 16:03:36 2013 +0000
- Parent:
- 0:497632f57657
- Commit message:
- sup;
Changed in this revision
SerLCDv25.h | Show annotated file Show diff for this revision Revisions of this file |
SertLCDv25.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 497632f57657 -r 65590e1ed8ed SerLCDv25.h --- a/SerLCDv25.h Wed Aug 10 13:32:08 2011 +0000 +++ b/SerLCDv25.h Fri Apr 05 16:03:36 2013 +0000 @@ -17,9 +17,11 @@ void printValue(float *Value); void putc(char lettre); void Brightness(int Value); + void splash(); private: Serial* device; }; - +void clear(void); +void move_cursor(int,int); #endif \ No newline at end of file
diff -r 497632f57657 -r 65590e1ed8ed SertLCDv25.cpp --- a/SertLCDv25.cpp Wed Aug 10 13:32:08 2011 +0000 +++ b/SertLCDv25.cpp Fri Apr 05 16:03:36 2013 +0000 @@ -47,6 +47,9 @@ } +void SerLCDv25::splash(){ + device->printf("%c%c",0x7C,0x0a); +} @@ -55,4 +58,3 @@ -