Ronald Garcia / Mbed 2 deprecated FOTA_TEST

Dependencies:   BLE_API mbed nRF51822

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers mail.cpp Source File

mail.cpp

00001 #include "mbed.h"
00002 #include "BLE.h"
00003 
00004 BLEDevice  ble;
00005 
00006 int main(void){
00007     ble.init();
00008     ble.setAdvertisingInterval(1000); /* 100ms; in multiples of 0.625ms. */
00009     ble.startAdvertising();
00010     while(true){
00011         ble.waitForEvent();
00012     }    
00013 }