KEIS

Dependencies:   C12832_lcd mbed

Files at this revision

API Documentation at this revision

Comitter:
khayakawa
Date:
Tue Oct 01 00:13:24 2013 +0000
Commit message:
KEIS

Changed in this revision

C12832_lcd.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 1a9fcc66524d C12832_lcd.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/C12832_lcd.lib	Tue Oct 01 00:13:24 2013 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/dreschpe/code/C12832_lcd/#468cdccff7af
diff -r 000000000000 -r 1a9fcc66524d main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Oct 01 00:13:24 2013 +0000
@@ -0,0 +1,31 @@
+#include "mbed.h"
+#include "C12832_lcd.h"
+
+Serial pc(USBTX, USBRX); // tx, rx
+Serial device(p9, p10);  // tx, rx
+C12832_LCD lcd;
+DigitalOut myled(LED1);
+
+int main() {
+
+    char* ch[16]={"0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"};
+    char v_val[2];
+    char val;
+    int tmp1,tmp2;
+    
+    int sd_data_on[20]={0x7E,0x00,0x10,0x17,0x01,0x00,0x13,0xA2,0x00,0x40,0x92,0xFF,0x77,0xFF,0xFE,0x02,0x44,0x32,0x05,0x70};
+    int sd_data_off[20]={0x7E,0x00,0x10,0x17,0x01,0x00,0x13,0xA2,0x00,0x40,0x92,0xFF,0x77,0xFF,0xFE,0x02,0x44,0x32,0x04,0x71};
+    
+    lcd.cls();
+    lcd.locate(0,0); 
+   
+    while(1){     
+        myled=1;
+        val=device.getc();
+    
+        tmp1 = val/16;
+        tmp2 = val%16;
+        pc.printf("%s%s",ch[tmp1],ch[tmp2]);
+        myled=0;
+    } 
+}
diff -r 000000000000 -r 1a9fcc66524d mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Tue Oct 01 00:13:24 2013 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/9c8f0e3462fb
\ No newline at end of file