code demo pour le LCD du shield

Dependencies:   mbed C12832

Files at this revision

API Documentation at this revision

Comitter:
Kurogami
Date:
Mon Nov 26 08:43:00 2018 +0000
Commit message:
e

Changed in this revision

C12832.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/C12832.lib	Mon Nov 26 08:43:00 2018 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/askksa12543/code/C12832/#990d5eec2ef6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Nov 26 08:43:00 2018 +0000
@@ -0,0 +1,19 @@
+#include "mbed.h"
+#include "C12832.h"
+
+C12832 lcd(D11,D13,D12,D7,D10);
+
+int main() 
+{
+    char text[16]="test";
+    int i=0;
+    for(i=0;i<16;i++)
+    {
+        lcd._putc(text[i]);
+    }
+    lcd.circle(63,15,16,1);
+    while(1) 
+    {
+
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Nov 26 08:43:00 2018 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/e95d10626187
\ No newline at end of file