Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
You are viewing an older revision! See the latest version
Homepage
- include "mbed.h"
DigitalOut myled1(D9); DigitalOut myled2(A5);
int main() { while(1) { myled1 = 1; LED1 is ON myled2 = 0; LED2 is OFF wait(0.2); delay myled1 = 0; LED1 is OFF myled2 = 1; LED2 is ON wait(0.2); 1 sec
} }