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.
Dependencies: mbed
main.cpp
- Committer:
 - Banyrud
 - Date:
 - 2017-08-29
 - Revision:
 - 1:809739a3f957
 - Parent:
 - 0:d03036f0954c
 - Child:
 - 2:ce0c9da29c7d
 
File content as of revision 1:809739a3f957:
#include "mbed.h"
DigitalOut ledExt1(p21), led2(LED2), led3(LED3), ledExt4(p24);
int main() {
        ledExt1 = 1;
        wait(1.0);
        led2 = 1;
        wait(2.0);
        ledExt1 = 0;
        ledExt4 = 1;
        wait(2.0);
        led2 = ledExt4 = 0;
        wait(3.0);
        ledExt1 = led2 = led3 = ledExt4 = 1;
        wait(2.0);
        ledExt1 = led2 = led3 = ledExt4 = 0;
}