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.
main.cpp
- Committer:
- spanesar
- Date:
- 2016-10-06
- Revision:
- 1:8cd3ad6ab5f3
File content as of revision 1:8cd3ad6ab5f3:
#include "mbed.h"
#include "Led.h"
Led greenLed(PD_12);
Led orangeLed(PD_13);
Led redLed(PD_14);
Led blueLed(PD_15);
int main(){
while(1){
greenLed.flash(0.1);
orangeLed.flash(0.1);
redLed.flash(0.1);
blueLed.flash(0.1);
}
}