the best program ever written
main.cpp
- Committer:
- maclobski
- Date:
- 2016-06-10
- Revision:
- 1:0b410816f96b
- Parent:
- 0:8878e15623e3
File content as of revision 1:0b410816f96b:
#include "mbed.h"
DigitalOut thisled(LED1);
DigitalOut thatled(LED3);
int main() {
while(1) {
thisled = 1;
thatled = 0;
wait(0.2);
thisled = 0;
thatled = 1;
wait(0.2);
}
}