![](/media/cache/group/default_image.jpg.50x50_q85.jpg)
1
Revision 0:14561fc13ba3, committed 2018-05-29
- Comitter:
- saioun
- Date:
- Tue May 29 15:28:57 2018 +0000
- Commit message:
- 1
Changed in this revision
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