A demo program for ACM1602NI (I2C Tex LCD Library)

Dependencies:   ACM1602NI mbed

Files at this revision

API Documentation at this revision

Comitter:
takuo
Date:
Sat Dec 14 14:47:07 2013 +0000
Child:
1:b42944e91944
Commit message:
Initial commit

Changed in this revision

ACM1602NI.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
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ACM1602NI.lib	Sat Dec 14 14:47:07 2013 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/takuo/code/ACM1602NI/#33a8ca14e0e0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat Dec 14 14:47:07 2013 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+#include "ACM1602NI.h"
+
+// p9: sda, p10: scl
+I2C i2c(p9, p10);
+ACM1602NI lcd(i2c);
+
+int main()
+{
+    lcd.printf("Hello, World!\n");
+    lcd.printf("ACM1602NI\n");
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Sat Dec 14 14:47:07 2013 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/1efda918f0ba
\ No newline at end of file