mbed build system

This commit is contained in:
Todd Fleming
2017-01-02 20:22:06 -05:00
parent 864d1306b9
commit cdfed79a8d
7 changed files with 1331 additions and 0 deletions

12
smoother/src/main.cpp Normal file
View File

@ -0,0 +1,12 @@
#include "mbed.h"
DigitalOut myled(LED1);
int main() {
while(1) {
myled = 1;
wait(0.2);
myled = 0;
wait(0.2);
}
}