nRF51822 serves as the bridge between BLE central and MCU, which makes cental able to fetch photos from serial camera.

Dependencies:   BLE_API mbed nRF51822

Fork of nRF51822_blinky by RedBearLab

main.cpp

Committer:
RedBearLab
Date:
2016-01-07
Revision:
10:9e24f9f4ac47
Parent:
7:053e387ebb6f

File content as of revision 10:9e24f9f4ac47:

#include "mbed.h"

DigitalOut myled(LED1);

int main()
{
    while(1) {
        myled = 1;
        wait(1);
        myled = 0;
        wait(1);
    }
}