Exo

Dependencies:   IHM mbed

main.cpp

Committer:
Quent1nl
Date:
2018-05-29
Revision:
0:681da271de57

File content as of revision 0:681da271de57:

#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);

    }
}