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:
- 3:70764c9a25e0
- Parent:
- 2:257f4b2da21a
- Child:
- 4:18ab8489365f
--- a/lib_LCD_oem_ELCD.cpp Wed May 04 12:43:58 2016 +0000
+++ b/lib_LCD_oem_ELCD.cpp Wed May 04 12:51:40 2016 +0000
@@ -1,3 +1,33 @@
+/** LCD oem ELCD class
+*
+* @purpose library for oem ELCD
+*
+* 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
+* @date Jan 2014
+* @author Yannic Simon
+*/
#include "lib_LCD_oem_ELCD.h"
#define lcd_soft_boot 0xA0