Exo

Dependencies:   IHM mbed

Revision:
0:681da271de57
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue May 29 14:10:12 2018 +0000
@@ -0,0 +1,18 @@
+#include "Nboard.h"
+#include "IHM.h"
+IHM ihm;
+
+int main()
+{
+    volatile unsigned char cpt=0;
+    ihm.LCD_clear();
+    ihm.LCD_printf("1er TP avec IHM");
+    while(1) {
+        wait(0.5);
+        led0 =! led0;
+        cpt++;
+        ihm.LCD_gotoxy(1,13);
+        ihm.LCD_printf("%03d",cpt);
+
+    }
+}