BLE beacon code designed to be remotely compiled by the ble-scanner-station-demo code. https://github.com/BlackstoneEngineering/ble-scanner-station-demo

Dependencies:   BLE_API mbed nRF51822

Fork of BLE_GAP_Example by Bluetooth Low Energy

This code is meant to be used as a target for remote compilation. Users can pass in the NAME variable to change the broadcast name of the beacon being compiled.

This program is meant to be used in conjunction with the NodeJS ble-scanner-station-demo webapp and the remote compile api JS webapp.

The NodeJS ble-scanner-station-demo will display a webpage like the following. The Orange text will be replaced with the name of the beacon. For more details see the repo page

/media/uploads/mbedAustin/screenshot.png

Committer:
mbedAustin
Date:
Fri Apr 29 21:48:37 2016 +0000
Revision:
17:322f13ea91c1
Parent:
16:1e6fdee20db9
Updated NAME so it can be updated via remote compile service

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andresag 15:7e06fce6e4f8 1 /* mbed Microcontroller Library
andresag 15:7e06fce6e4f8 2 * Copyright (c) 2006-2015 ARM Limited
andresag 15:7e06fce6e4f8 3 *
andresag 15:7e06fce6e4f8 4 * Licensed under the Apache License, Version 2.0 (the "License");
andresag 15:7e06fce6e4f8 5 * you may not use this file except in compliance with the License.
andresag 15:7e06fce6e4f8 6 * You may obtain a copy of the License at
andresag 15:7e06fce6e4f8 7 *
andresag 15:7e06fce6e4f8 8 * http://www.apache.org/licenses/LICENSE-2.0
andresag 15:7e06fce6e4f8 9 *
andresag 15:7e06fce6e4f8 10 * Unless required by applicable law or agreed to in writing, software
andresag 15:7e06fce6e4f8 11 * distributed under the License is distributed on an "AS IS" BASIS,
andresag 15:7e06fce6e4f8 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
andresag 15:7e06fce6e4f8 13 * See the License for the specific language governing permissions and
andresag 15:7e06fce6e4f8 14 * limitations under the License.
andresag 15:7e06fce6e4f8 15 */
andresag 15:7e06fce6e4f8 16
mbedAustin 0:5375be4301ed 17 #include "mbed.h"
andresag 14:1c15d473b42f 18 #include "ble/BLE.h"
andresag 14:1c15d473b42f 19
mbedAustin 17:322f13ea91c1 20 #ifndef NAME
mbedAustin 16:1e6fdee20db9 21 #define NAME "spiffy"
mbedAustin 17:322f13ea91c1 22 #endif
mbedAustin 16:1e6fdee20db9 23
andresag 14:1c15d473b42f 24 /* Optional: Device Name, add for human read-ability */
mbedAustin 16:1e6fdee20db9 25 const static char DEVICE_NAME[] = NAME;
andresag 14:1c15d473b42f 26
andresag 14:1c15d473b42f 27 /* You have up to 26 bytes of advertising data to use. */
mbedAustin 17:322f13ea91c1 28 //const static uint8_t AdvData[] = {0x01,0x02,0x03,0x04,0x05}; /* Example of hex data */
mbedAustin 17:322f13ea91c1 29 const static uint8_t AdvData[] = {"dac"}; /* Example of character data */
mbedAustin 0:5375be4301ed 30
andresag 14:1c15d473b42f 31 /* Optional: Restart advertising when peer disconnects */
andresag 14:1c15d473b42f 32 void disconnectionCallback(const Gap::DisconnectionCallbackParams_t *params)
andresag 14:1c15d473b42f 33 {
andresag 14:1c15d473b42f 34 BLE::Instance().gap().startAdvertising();
andresag 14:1c15d473b42f 35 }
andresag 14:1c15d473b42f 36 /**
andresag 14:1c15d473b42f 37 * This function is called when the ble initialization process has failed
andresag 14:1c15d473b42f 38 */
andresag 14:1c15d473b42f 39 void onBleInitError(BLE &ble, ble_error_t error)
andresag 14:1c15d473b42f 40 {
andresag 14:1c15d473b42f 41 /* Avoid compiler warnings */
andresag 14:1c15d473b42f 42 (void) ble;
andresag 14:1c15d473b42f 43 (void) error;
andresag 14:1c15d473b42f 44
andresag 14:1c15d473b42f 45 /* Initialization error handling should go here */
andresag 14:1c15d473b42f 46 }
mbedAustin 0:5375be4301ed 47
andresag 14:1c15d473b42f 48 /**
andresag 14:1c15d473b42f 49 * Callback triggered when the ble initialization process has finished
andresag 14:1c15d473b42f 50 */
andresag 14:1c15d473b42f 51 void bleInitComplete(BLE::InitializationCompleteCallbackContext *params)
andresag 14:1c15d473b42f 52 {
andresag 14:1c15d473b42f 53 BLE& ble = params->ble;
andresag 14:1c15d473b42f 54 ble_error_t error = params->error;
andresag 14:1c15d473b42f 55
andresag 14:1c15d473b42f 56 if (error != BLE_ERROR_NONE) {
andresag 14:1c15d473b42f 57 /* In case of error, forward the error handling to onBleInitError */
andresag 14:1c15d473b42f 58 onBleInitError(ble, error);
andresag 14:1c15d473b42f 59 return;
andresag 14:1c15d473b42f 60 }
mbedAustin 5:fff16d283dcf 61
andresag 14:1c15d473b42f 62 /* Ensure that it is the default instance of BLE */
andresag 14:1c15d473b42f 63 if(ble.getInstanceID() != BLE::DEFAULT_INSTANCE) {
andresag 14:1c15d473b42f 64 return;
andresag 14:1c15d473b42f 65 }
andresag 14:1c15d473b42f 66
andresag 14:1c15d473b42f 67 /* Set device name characteristic data */
mbedAustin 16:1e6fdee20db9 68 ble.gap().setDeviceName(reinterpret_cast<const uint8_t *>(&DEVICE_NAME));
andresag 14:1c15d473b42f 69
andresag 14:1c15d473b42f 70 /* Optional: add callback for disconnection */
andresag 14:1c15d473b42f 71 ble.gap().onDisconnection(disconnectionCallback);
mbedAustin 1:0692bee84264 72
andresag 14:1c15d473b42f 73 /* Sacrifice 3B of 31B to Advertising Flags */
andresag 14:1c15d473b42f 74 ble.gap().accumulateAdvertisingPayload(GapAdvertisingData::BREDR_NOT_SUPPORTED | GapAdvertisingData::LE_GENERAL_DISCOVERABLE );
andresag 14:1c15d473b42f 75 ble.gap().setAdvertisingType(GapAdvertisingParams::ADV_CONNECTABLE_UNDIRECTED);
andresag 14:1c15d473b42f 76
andresag 14:1c15d473b42f 77 /* Sacrifice 2B of 31B to AdvType overhead, rest goes to AdvData array you define */
mbedAustin 17:322f13ea91c1 78 ble.gap().accumulateAdvertisingPayload(GapAdvertisingData::MANUFACTURER_SPECIFIC_DATA, AdvData, sizeof(AdvData));
andresag 14:1c15d473b42f 79
andresag 14:1c15d473b42f 80 /* Optional: Add name to device */
mbedAustin 16:1e6fdee20db9 81 ble.gap().accumulateAdvertisingPayload(GapAdvertisingData::COMPLETE_LOCAL_NAME, (uint8_t *)DEVICE_NAME, sizeof(DEVICE_NAME));
mbedAustin 16:1e6fdee20db9 82 ble.gap().accumulateScanResponse(GapAdvertisingData::COMPLETE_LOCAL_NAME, reinterpret_cast<const uint8_t *>(&DEVICE_NAME), sizeof(DEVICE_NAME));
andresag 14:1c15d473b42f 83 /* Set advertising interval. Longer interval == longer battery life */
andresag 14:1c15d473b42f 84 ble.gap().setAdvertisingInterval(100); /* 100ms */
andresag 14:1c15d473b42f 85
andresag 14:1c15d473b42f 86 /* Start advertising */
mbedAustin 16:1e6fdee20db9 87 ble.gap().setTxPower(0);
andresag 14:1c15d473b42f 88 ble.gap().startAdvertising();
mbedAustin 8:5442739198ec 89 }
mbedAustin 8:5442739198ec 90
mbedAustin 1:0692bee84264 91 int main(void)
mbedAustin 0:5375be4301ed 92 {
andresag 14:1c15d473b42f 93 BLE& ble = BLE::Instance(BLE::DEFAULT_INSTANCE);
andresag 14:1c15d473b42f 94
andresag 14:1c15d473b42f 95 /* Initialize BLE baselayer, always do this first! */
andresag 14:1c15d473b42f 96 ble.init(bleInitComplete);
mbedAustin 1:0692bee84264 97
andresag 14:1c15d473b42f 98 /* Infinite loop waiting for BLE events */
andresag 14:1c15d473b42f 99 while (true) {
andresag 14:1c15d473b42f 100 /* Save power while waiting for callback events */
mbedAustin 17:322f13ea91c1 101 ble.waitForEvent();
mbedAustin 1:0692bee84264 102 }
mbedAustin 1:0692bee84264 103 }