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.
Fork of Bootcamp-HelloWorld_LED by
main.cpp
- Committer:
- avnisha
- Date:
- 2013-04-16
- Revision:
- 2:d243c01512ab
- Parent:
- 0:fb6bbc10ffa0
- Child:
- 3:997ae35e2cee
File content as of revision 2:d243c01512ab:
#include "mbed.h"
DigitalOut red(LED1);
DigitalOut green(LED2);
DigitalOut blue(LED3);
int main() {
while(1){
red = 1;
green = blue = 0;
wait(0.2);
// green
green = 1;
red = blue = 0;
wait(0.2);
// blue
blue = 1;
red = green = 0;
wait(0.2);
}
}
