Josh Stroud
/
nrf51-evoTest
Example with mbed, ble, and evothings app
Fork of HelloWorld by
main.cpp
- Committer:
- simon
- Date:
- 2011-01-16
- Revision:
- 0:fb6bbc10ffa0
- Child:
- 2:3015a85eb00a
File content as of revision 0:fb6bbc10ffa0:
#include "mbed.h" DigitalOut myled(LED1); int main() { while(1) { myled = 1; wait(0.2); myled = 0; wait(0.2); } }