![](/media/cache/profiles/416a275fea912be3a578ba281b58bb47.jpg.50x50_q85.jpg)
First step in making the code to be more independent on each board. This version is just for TinyBLE, the next will be a bit more generic
Dependencies: BLE_API mbed nRF51822
Fork of EddystoneBeaconSwitchLed by
main.cpp
- Committer:
- simon
- Date:
- 2011-01-16
- Revision:
- 0:fb6bbc10ffa0
- Child:
- 2:fc105f4c854e
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); } }