testio

#include "mbed.h"

DigitalOut myled(LED3);

int main() {
    for(int i=0; i<5; i++) {
        myled = 1;
        wait(0.1);
        myled = 0;
        wait(0.9);
    }
}    


0 comments

You need to log in to post a comment