LCD D7-P8,D6-P9,D5-P10,D4-P11,RS-P13,E-P12

Dependencies:   TextLCD mbed

Files at this revision

API Documentation at this revision

Comitter:
rajivwagle
Date:
Thu Mar 08 12:16:33 2018 +0000
Commit message:
LCD DEMO

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
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r ebcf99ad1a5c TextLCD.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TextLCD.lib	Thu Mar 08 12:16:33 2018 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/simon/code/TextLCD/#308d188a2d3a
diff -r 000000000000 -r ebcf99ad1a5c main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Mar 08 12:16:33 2018 +0000
@@ -0,0 +1,9 @@
+
+#include "mbed.h"
+#include "TextLCD.h"
+ 
+TextLCD lcd(p13, p12, p11, p10, p9, p8, TextLCD::LCD16x2); // rs, e, d4-d7
+ 
+int main() {
+    lcd.printf("Hello BMW World!\n");
+}
\ No newline at end of file
diff -r 000000000000 -r ebcf99ad1a5c mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu Mar 08 12:16:33 2018 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/7130f322cb7e
\ No newline at end of file