1

Dependencies:   IHM_V2 mbed

Files at this revision

API Documentation at this revision

Comitter:
saioun
Date:
Tue May 29 15:28:57 2018 +0000
Commit message:
1

Changed in this revision

IHM_V2.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 14561fc13ba3 IHM_V2.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/IHM_V2.lib	Tue May 29 15:28:57 2018 +0000
@@ -0,0 +1,1 @@
+http://os.mbed.com/teams/NBoard/code/IHM_V2/#ad91067e3f6d
diff -r 000000000000 -r 14561fc13ba3 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue May 29 15:28:57 2018 +0000
@@ -0,0 +1,25 @@
+#include "mbed.h"
+#include "IHM.h"
+
+IHM ihm;
+
+Timer timer;
+
+void fct_a_mesurer(void)
+{
+    ihm.LCD_gotoxy(0, 0);
+    ihm.LCD_clear();
+    ihm.LCD_printf("test");
+}
+
+int main()
+{
+    float time;
+    timer.start();
+    fct_a_mesurer();
+    timer.stop();
+    time = timer.read();
+    ihm.LCD_clear();
+    ihm.LCD_gotoxy(1, 0);
+    ihm.LCD_printf("%6.5f", time);       
+}
\ No newline at end of file
diff -r 000000000000 -r 14561fc13ba3 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Tue May 29 15:28:57 2018 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/5aab5a7997ee
\ No newline at end of file