DISEÑO MEJORA E INNOVACCION DE BASTON DE USUARIO NO VIDENTE

Dependencies:   mbed

main.cpp

Committer:
nsanlucas
Date:
2020-02-01
Revision:
0:a03641fe06d2

File content as of revision 0:a03641fe06d2:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}