Nora Vazbyte
/
99Problems-BLEAint1
app critics will say it's money, cash, toes
source/main.cpp@3:a33709dad06c, 2018-10-28 (annotated)
- Committer:
- vazbyte
- Date:
- Sun Oct 28 14:10:06 2018 +0000
- Revision:
- 3:a33709dad06c
- Parent:
- 2:1957a4985d6e
- Child:
- 4:af0530752b76
:O
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
vazbyte | 0:07212de2fec1 | 1 | /* mbed Microcontroller Library |
vazbyte | 0:07212de2fec1 | 2 | * Copyright (c) 2006-2014 ARM Limited |
vazbyte | 0:07212de2fec1 | 3 | * |
vazbyte | 0:07212de2fec1 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
vazbyte | 0:07212de2fec1 | 5 | * you may not use this file except in compliance with the License. |
vazbyte | 0:07212de2fec1 | 6 | * You may obtain a copy of the License at |
vazbyte | 0:07212de2fec1 | 7 | * |
vazbyte | 0:07212de2fec1 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
vazbyte | 0:07212de2fec1 | 9 | * |
vazbyte | 0:07212de2fec1 | 10 | * Unless required by applicable law or agreed to in writing, software |
vazbyte | 0:07212de2fec1 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
vazbyte | 0:07212de2fec1 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
vazbyte | 0:07212de2fec1 | 13 | * See the License for the specific language governing permissions and |
vazbyte | 0:07212de2fec1 | 14 | * limitations under the License. |
vazbyte | 0:07212de2fec1 | 15 | */ |
vazbyte | 0:07212de2fec1 | 16 | |
vazbyte | 0:07212de2fec1 | 17 | #include <events/mbed_events.h> |
vazbyte | 3:a33709dad06c | 18 | #include <math.h> |
vazbyte | 0:07212de2fec1 | 19 | #include <mbed.h> |
vazbyte | 1:df8884d38960 | 20 | #include "MPU9250.h" |
vazbyte | 0:07212de2fec1 | 21 | #include "ble/BLE.h" |
vazbyte | 0:07212de2fec1 | 22 | #include "ble/Gap.h" |
vazbyte | 1:df8884d38960 | 23 | #include "ble/services/HeartRateService.h" |
vazbyte | 1:df8884d38960 | 24 | |
vazbyte | 0:07212de2fec1 | 25 | |
vazbyte | 0:07212de2fec1 | 26 | DigitalOut led1(LED1, 1); |
vazbyte | 0:07212de2fec1 | 27 | |
vazbyte | 1:df8884d38960 | 28 | const static char DEVICE_NAME[] = "ProVaida"; |
vazbyte | 1:df8884d38960 | 29 | static const uint16_t uuid16_list[] = {GattService::UUID_HEART_RATE_SERVICE}; |
vazbyte | 0:07212de2fec1 | 30 | |
vazbyte | 3:a33709dad06c | 31 | uint8_t hrmCounter = 0; |
vazbyte | 1:df8884d38960 | 32 | static HeartRateService* hrService; |
vazbyte | 0:07212de2fec1 | 33 | |
vazbyte | 0:07212de2fec1 | 34 | static EventQueue eventQueue(/* event count */ 16 * EVENTS_EVENT_SIZE); |
vazbyte | 0:07212de2fec1 | 35 | |
vazbyte | 0:07212de2fec1 | 36 | void disconnectionCallback(const Gap::DisconnectionCallbackParams_t *params) |
vazbyte | 0:07212de2fec1 | 37 | { |
vazbyte | 0:07212de2fec1 | 38 | BLE::Instance().gap().startAdvertising(); |
vazbyte | 0:07212de2fec1 | 39 | } |
vazbyte | 0:07212de2fec1 | 40 | |
vazbyte | 2:1957a4985d6e | 41 | void updateSensorValue() { |
vazbyte | 2:1957a4985d6e | 42 | // hrmCounter++; |
vazbyte | 2:1957a4985d6e | 43 | // if (hrmCounter > 175) { |
vazbyte | 2:1957a4985d6e | 44 | // hrmCounter = 100; |
vazbyte | 2:1957a4985d6e | 45 | // } |
vazbyte | 3:a33709dad06c | 46 | MPU9250 mpu = MPU9250(p26, p27); |
vazbyte | 3:a33709dad06c | 47 | int16_t * destination; |
vazbyte | 3:a33709dad06c | 48 | mpu.readAccelData(destination); |
vazbyte | 3:a33709dad06c | 49 | |
vazbyte | 3:a33709dad06c | 50 | uint8_t acc_x = destination[0]; |
vazbyte | 3:a33709dad06c | 51 | uint8_t acc_y = destination[1]; |
vazbyte | 3:a33709dad06c | 52 | uint8_t acc_z = destination[2]; |
vazbyte | 3:a33709dad06c | 53 | |
vazbyte | 3:a33709dad06c | 54 | uint8_t sqr_acc_x = acc_x*acc_x; |
vazbyte | 3:a33709dad06c | 55 | uint8_t sqr_acc_y = acc_y*acc_y; |
vazbyte | 3:a33709dad06c | 56 | uint8_t sqr_acc_z = acc_z*acc_z; |
vazbyte | 3:a33709dad06c | 57 | |
vazbyte | 3:a33709dad06c | 58 | double sum_acc = sqr_acc_x + sqr_acc_y + sqr_acc_z; |
vazbyte | 3:a33709dad06c | 59 | |
vazbyte | 3:a33709dad06c | 60 | hrmCounter = sqrt(sum_acc); |
vazbyte | 1:df8884d38960 | 61 | |
vazbyte | 1:df8884d38960 | 62 | hrService->updateHeartRate(hrmCounter); |
vazbyte | 0:07212de2fec1 | 63 | } |
vazbyte | 0:07212de2fec1 | 64 | |
vazbyte | 0:07212de2fec1 | 65 | void blinkCallback(void) |
vazbyte | 0:07212de2fec1 | 66 | { |
vazbyte | 0:07212de2fec1 | 67 | led1 = !led1; /* Do blinky on LED1 while we're waiting for BLE events */ |
vazbyte | 0:07212de2fec1 | 68 | |
vazbyte | 0:07212de2fec1 | 69 | BLE &ble = BLE::Instance(); |
vazbyte | 0:07212de2fec1 | 70 | if (ble.gap().getState().connected) { |
vazbyte | 0:07212de2fec1 | 71 | eventQueue.call(updateSensorValue); |
vazbyte | 0:07212de2fec1 | 72 | } |
vazbyte | 0:07212de2fec1 | 73 | } |
vazbyte | 0:07212de2fec1 | 74 | |
vazbyte | 0:07212de2fec1 | 75 | /** |
vazbyte | 1:df8884d38960 | 76 | * This function is called when the ble initialization process has failed |
vazbyte | 0:07212de2fec1 | 77 | */ |
vazbyte | 0:07212de2fec1 | 78 | void onBleInitError(BLE &ble, ble_error_t error) |
vazbyte | 0:07212de2fec1 | 79 | { |
vazbyte | 0:07212de2fec1 | 80 | /* Initialization error handling should go here */ |
vazbyte | 0:07212de2fec1 | 81 | } |
vazbyte | 0:07212de2fec1 | 82 | |
vazbyte | 0:07212de2fec1 | 83 | void printMacAddress() |
vazbyte | 0:07212de2fec1 | 84 | { |
vazbyte | 0:07212de2fec1 | 85 | /* Print out device MAC address to the console*/ |
vazbyte | 0:07212de2fec1 | 86 | Gap::AddressType_t addr_type; |
vazbyte | 0:07212de2fec1 | 87 | Gap::Address_t address; |
vazbyte | 0:07212de2fec1 | 88 | BLE::Instance().gap().getAddress(&addr_type, address); |
vazbyte | 0:07212de2fec1 | 89 | printf("DEVICE MAC ADDRESS: "); |
vazbyte | 0:07212de2fec1 | 90 | for (int i = 5; i >= 1; i--){ |
vazbyte | 0:07212de2fec1 | 91 | printf("%02x:", address[i]); |
vazbyte | 0:07212de2fec1 | 92 | } |
vazbyte | 0:07212de2fec1 | 93 | printf("%02x\r\n", address[0]); |
vazbyte | 0:07212de2fec1 | 94 | } |
vazbyte | 0:07212de2fec1 | 95 | |
vazbyte | 0:07212de2fec1 | 96 | /** |
vazbyte | 0:07212de2fec1 | 97 | * Callback triggered when the ble initialization process has finished |
vazbyte | 0:07212de2fec1 | 98 | */ |
vazbyte | 0:07212de2fec1 | 99 | void bleInitComplete(BLE::InitializationCompleteCallbackContext *params) |
vazbyte | 0:07212de2fec1 | 100 | { |
vazbyte | 0:07212de2fec1 | 101 | BLE& ble = params->ble; |
vazbyte | 0:07212de2fec1 | 102 | ble_error_t error = params->error; |
vazbyte | 0:07212de2fec1 | 103 | |
vazbyte | 0:07212de2fec1 | 104 | if (error != BLE_ERROR_NONE) { |
vazbyte | 0:07212de2fec1 | 105 | /* In case of error, forward the error handling to onBleInitError */ |
vazbyte | 0:07212de2fec1 | 106 | onBleInitError(ble, error); |
vazbyte | 0:07212de2fec1 | 107 | return; |
vazbyte | 0:07212de2fec1 | 108 | } |
vazbyte | 0:07212de2fec1 | 109 | |
vazbyte | 0:07212de2fec1 | 110 | /* Ensure that it is the default instance of BLE */ |
vazbyte | 0:07212de2fec1 | 111 | if(ble.getInstanceID() != BLE::DEFAULT_INSTANCE) { |
vazbyte | 0:07212de2fec1 | 112 | return; |
vazbyte | 0:07212de2fec1 | 113 | } |
vazbyte | 0:07212de2fec1 | 114 | |
vazbyte | 0:07212de2fec1 | 115 | ble.gap().onDisconnection(disconnectionCallback); |
vazbyte | 0:07212de2fec1 | 116 | |
vazbyte | 0:07212de2fec1 | 117 | /* Setup primary service */ |
vazbyte | 1:df8884d38960 | 118 | hrService = new HeartRateService(ble, hrmCounter, HeartRateService::LOCATION_FINGER); |
vazbyte | 0:07212de2fec1 | 119 | |
vazbyte | 0:07212de2fec1 | 120 | /* Setup advertising */ |
vazbyte | 0:07212de2fec1 | 121 | ble.gap().accumulateAdvertisingPayload(GapAdvertisingData::BREDR_NOT_SUPPORTED | GapAdvertisingData::LE_GENERAL_DISCOVERABLE); |
vazbyte | 0:07212de2fec1 | 122 | ble.gap().accumulateAdvertisingPayload(GapAdvertisingData::COMPLETE_LIST_16BIT_SERVICE_IDS, (uint8_t *) uuid16_list, sizeof(uuid16_list)); |
vazbyte | 0:07212de2fec1 | 123 | ble.gap().accumulateAdvertisingPayload(GapAdvertisingData::COMPLETE_LOCAL_NAME, (uint8_t *) DEVICE_NAME, sizeof(DEVICE_NAME)); |
vazbyte | 0:07212de2fec1 | 124 | ble.gap().setAdvertisingType(GapAdvertisingParams::ADV_CONNECTABLE_UNDIRECTED); |
vazbyte | 0:07212de2fec1 | 125 | ble.gap().setAdvertisingInterval(1000); /* 1000ms */ |
vazbyte | 0:07212de2fec1 | 126 | ble.gap().startAdvertising(); |
vazbyte | 0:07212de2fec1 | 127 | |
vazbyte | 0:07212de2fec1 | 128 | printMacAddress(); |
vazbyte | 0:07212de2fec1 | 129 | } |
vazbyte | 0:07212de2fec1 | 130 | |
vazbyte | 0:07212de2fec1 | 131 | void scheduleBleEventsProcessing(BLE::OnEventsToProcessCallbackContext* context) { |
vazbyte | 0:07212de2fec1 | 132 | BLE &ble = BLE::Instance(); |
vazbyte | 0:07212de2fec1 | 133 | eventQueue.call(Callback<void()>(&ble, &BLE::processEvents)); |
vazbyte | 0:07212de2fec1 | 134 | } |
vazbyte | 0:07212de2fec1 | 135 | |
vazbyte | 0:07212de2fec1 | 136 | int main() |
vazbyte | 0:07212de2fec1 | 137 | { |
vazbyte | 2:1957a4985d6e | 138 | MPU9250 mpu = MPU9250(p26, p27); |
vazbyte | 2:1957a4985d6e | 139 | mpu.initMPU9250(); |
vazbyte | 3:a33709dad06c | 140 | eventQueue.call_every(100, blinkCallback); |
vazbyte | 0:07212de2fec1 | 141 | |
vazbyte | 0:07212de2fec1 | 142 | BLE &ble = BLE::Instance(); |
vazbyte | 0:07212de2fec1 | 143 | ble.onEventsToProcess(scheduleBleEventsProcessing); |
vazbyte | 0:07212de2fec1 | 144 | ble.init(bleInitComplete); |
vazbyte | 0:07212de2fec1 | 145 | |
vazbyte | 0:07212de2fec1 | 146 | eventQueue.dispatch_forever(); |
vazbyte | 0:07212de2fec1 | 147 | |
vazbyte | 0:07212de2fec1 | 148 | return 0; |
vazbyte | 0:07212de2fec1 | 149 | } |