h

Dependencies:   TextLCD mbed

Files at this revision

API Documentation at this revision

Comitter:
suads
Date:
Thu Feb 01 10:56:13 2018 +0000
Commit message:
first commit

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 7376fc7a774b TextLCD.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TextLCD.lib	Thu Feb 01 10:56:13 2018 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/simon/code/TextLCD/#308d188a2d3a
diff -r 000000000000 -r 7376fc7a774b main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Feb 01 10:56:13 2018 +0000
@@ -0,0 +1,17 @@
+// Hello World! for the TextLCD
+
+#include "mbed.h"
+#include "TextLCD.h"
+
+TextLCD lcd(D2, D3, D4, D5, D6, D7); // rs, e, d4-d7
+
+int main() {
+    lcd.printf("Hello GRGA!\n");
+    wait(3);
+    //lcd.cls();
+    lcd.locate(0,0);
+    lcd.printf("Whats Up");
+        lcd.cls();
+        wait(3);
+
+}
diff -r 000000000000 -r 7376fc7a774b mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu Feb 01 10:56:13 2018 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/7130f322cb7e
\ No newline at end of file