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.
PE_U1_3FarbenLed.cpp
- Committer:
- besam
- Date:
- 2020-01-14
- Revision:
- 0:89fae6e3d91c
File content as of revision 0:89fae6e3d91c:
#include "mbed.h"
DigitalOut redled(p5);
DigitalOut yellowled(p6);
DigitalOut blueled(p7);
int main() {
while(1) {
redled = 0;
yellowled = 0;
blueled = 0;
wait(0.5);
redled = 1;
yellowled = 0;
blueled = 0;
wait(0.5);
redled = 1;
yellowled = 1;
blueled =0;
wait(0.5);
redled = 1;
yellowled = 1;
blueled =1;
wait(0.5);
}
}