led flash

  1. include "mbed.h"

DigitalOut myled(LED1);

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


1 comment on led flash:

11 Aug 2015

where to find "mbed.h" file

Please log in to post comments.