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.
Dependents: lib_LCD_oem_example libs_YSI_example TP3exo1
Diff: lib_LCD_oem_ELCD.cpp
- Revision:
- 1:5e038c0d111f
- Parent:
- 0:1323ab32b8ca
- Child:
- 2:257f4b2da21a
--- a/lib_LCD_oem_ELCD.cpp Tue Jan 21 10:28:53 2014 +0000
+++ b/lib_LCD_oem_ELCD.cpp Tue Jan 21 12:14:07 2014 +0000
@@ -1,3 +1,32 @@
+/** LCD oem ELCD class
+* Utilisée pour écrire sur l'afficheur oem ELCD 4x20.
+*
+* Copyright (c) 2014, cstyles (http://mbed.org)
+*
+* Exemple:
+* @code
+* #include "mbed.h"
+* #include "lib_LCD_oem_ELCD.h"
+*
+* LCD_OEM LCD(p13); //Tx
+*
+* int main() {
+* int i=0;
+* while(1)
+* {
+* LCD.clear();
+* LCD.print(i++);
+* if(i>9999) i=0;
+* wait(0.25);
+* }
+* }
+* @endcode
+* @file lib_LCD_oem_ELDC.h
+* @purpose library for oem ELCD
+* @date Jan 2014
+* @author Yannic Simon
+*/
+
#include "lib_LCD_oem_ELCD.h"
#define lcd_soft_boot 0xA0