V8_4

Dependencies:   TextLCD mbed

Files at this revision

API Documentation at this revision

Comitter:
jnovosel
Date:
Thu Nov 24 18:01:32 2016 +0000
Commit message:
VT4_V8_4

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 a5ad9b843e13 TextLCD.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TextLCD.lib	Thu Nov 24 18:01:32 2016 +0000
@@ -0,0 +1,1 @@
+http://developer.mbed.org/users/wim/code/TextLCD/#111ca62e8a59
diff -r 000000000000 -r a5ad9b843e13 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Nov 24 18:01:32 2016 +0000
@@ -0,0 +1,15 @@
+#include "mbed.h"
+#include "TextLCD.h"
+//TextLCD lcd(p19, p20, p21, p22, p23, p24); // rs, e, d0, d1, d2, d3
+TextLCD lcd(p19, p20, p21, p22, p23, p24,TextLCD::LCD8x2);
+int x=0;
+int main()
+{
+    lcd.printf("LCD Counter");
+    while (1) {
+        lcd.locate(5,1);
+        lcd.printf("%i",x);
+        wait(1);
+        x++;
+    }
+}
\ No newline at end of file
diff -r 000000000000 -r a5ad9b843e13 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu Nov 24 18:01:32 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/d75b3fe1f5cb
\ No newline at end of file