LCD with lib

Dependencies:   TextLCD mbed

Fork of mX_LCD by Ashwin Athani

Files at this revision

API Documentation at this revision

Comitter:
HarishMekali
Date:
Mon Feb 18 07:07:58 2013 +0000
Parent:
0:fdcca458129b
Commit message:
LCD using lib

Changed in this revision

TextLCD.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TextLCD.lib	Mon Feb 18 07:07:58 2013 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/carlos_nascimento08/code/TextLCD/#ab287c4899bf
--- a/main.cpp	Wed Dec 08 06:25:47 2010 +0000
+++ b/main.cpp	Mon Feb 18 07:07:58 2013 +0000
@@ -1,9 +1,8 @@
-#include "mbed.h"
-#include "TextLCD.h"
-
-TextLCD lcd(p24, p25, p26, p27, p28, p29, p30); // rs, rw, e, d4, d5, d6, d7
-
-int main() {
-      lcd.cls();
-      lcd.printf("NGX Technologies");
-}
\ No newline at end of file
+ #include "mbed.h"
+ #include "TextLCD.h"
+ 
+ TextLCD lcd(p19, p20, p21, p22, p23, p24); // rs, e, d0-d3
+ 
+ int main() {
+   lcd.printf("Hello World!\n");                                                                                                                                                                                                                                                                                        
+ }
\ No newline at end of file