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:
- gcarmonar
- Date:
- 2014-05-09
- Revision:
- 0:488c84481da4
File content as of revision 0:488c84481da4:
#include "mbed.h"
DigitalOut myled(LED1);
DigitalIn A(D5);
DigitalIn B(D6);
DigitalIn C(D7);
int main() {
myled = 0;
wait(1);
while(1) {
myled = !A&B|C;
wait(0.1);
}
}