Nora Vazbyte
/
99Problems-BLEAint1
app critics will say it's money, cash, toes
source/main.cpp@4:af0530752b76, 2018-10-28 (annotated)
- Committer:
- vazbyte
- Date:
- Sun Oct 28 15:38:10 2018 +0000
- Revision:
- 4:af0530752b76
- Parent:
- 3:a33709dad06c
- Child:
- 5:c75ea8bfa9fb
Success at transmitting x-axis data
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 | 4:af0530752b76 | 31 | int16_t destination[3]; |
vazbyte | 3:a33709dad06c | 32 | uint8_t hrmCounter = 0; |
vazbyte | 1:df8884d38960 | 33 | static HeartRateService* hrService; |
vazbyte | 4:af0530752b76 | 34 | //MPU9250 mpu = MPU9250(p26, p27); |
vazbyte | 4:af0530752b76 | 35 | MPU9250 mpu = MPU9250(P0_26, P0_27); |
vazbyte | 0:07212de2fec1 | 36 | |
vazbyte | 0:07212de2fec1 | 37 | static EventQueue eventQueue(/* event count */ 16 * EVENTS_EVENT_SIZE); |
vazbyte | 0:07212de2fec1 | 38 | |
vazbyte | 0:07212de2fec1 | 39 | void disconnectionCallback(const Gap::DisconnectionCallbackParams_t *params) |
vazbyte | 0:07212de2fec1 | 40 | { |
vazbyte | 0:07212de2fec1 | 41 | BLE::Instance().gap().startAdvertising(); |
vazbyte | 0:07212de2fec1 | 42 | } |
vazbyte | 0:07212de2fec1 | 43 | |
vazbyte | 2:1957a4985d6e | 44 | void updateSensorValue() { |
vazbyte | 4:af0530752b76 | 45 | |
vazbyte | 3:a33709dad06c | 46 | mpu.readAccelData(destination); |
vazbyte | 3:a33709dad06c | 47 | |
vazbyte | 3:a33709dad06c | 48 | uint8_t acc_x = destination[0]; |
vazbyte | 3:a33709dad06c | 49 | uint8_t acc_y = destination[1]; |
vazbyte | 3:a33709dad06c | 50 | uint8_t acc_z = destination[2]; |
vazbyte | 3:a33709dad06c | 51 | |
vazbyte | 3:a33709dad06c | 52 | uint8_t sqr_acc_x = acc_x*acc_x; |
vazbyte | 3:a33709dad06c | 53 | uint8_t sqr_acc_y = acc_y*acc_y; |
vazbyte | 3:a33709dad06c | 54 | uint8_t sqr_acc_z = acc_z*acc_z; |
vazbyte | 3:a33709dad06c | 55 | |
vazbyte | 3:a33709dad06c | 56 | double sum_acc = sqr_acc_x + sqr_acc_y + sqr_acc_z; |
vazbyte | 3:a33709dad06c | 57 | |
vazbyte | 4:af0530752b76 | 58 | uint8_t value = sqrt(sum_acc); |
vazbyte | 4:af0530752b76 | 59 | hrmCounter = acc_x; |
vazbyte | 1:df8884d38960 | 60 | |
vazbyte | 1:df8884d38960 | 61 | hrService->updateHeartRate(hrmCounter); |
vazbyte | 0:07212de2fec1 | 62 | } |
vazbyte | 0:07212de2fec1 | 63 | |
vazbyte | 0:07212de2fec1 | 64 | void blinkCallback(void) |
vazbyte | 0:07212de2fec1 | 65 | { |
vazbyte | 0:07212de2fec1 | 66 | led1 = !led1; /* Do blinky on LED1 while we're waiting for BLE events */ |
vazbyte | 0:07212de2fec1 | 67 | |
vazbyte | 0:07212de2fec1 | 68 | BLE &ble = BLE::Instance(); |
vazbyte | 0:07212de2fec1 | 69 | if (ble.gap().getState().connected) { |
vazbyte | 0:07212de2fec1 | 70 | eventQueue.call(updateSensorValue); |
vazbyte | 0:07212de2fec1 | 71 | } |
vazbyte | 0:07212de2fec1 | 72 | } |
vazbyte | 0:07212de2fec1 | 73 | |
vazbyte | 0:07212de2fec1 | 74 | /** |
vazbyte | 1:df8884d38960 | 75 | * This function is called when the ble initialization process has failed |
vazbyte | 0:07212de2fec1 | 76 | */ |
vazbyte | 0:07212de2fec1 | 77 | void onBleInitError(BLE &ble, ble_error_t error) |
vazbyte | 0:07212de2fec1 | 78 | { |
vazbyte | 0:07212de2fec1 | 79 | /* Initialization error handling should go here */ |
vazbyte | 0:07212de2fec1 | 80 | } |
vazbyte | 0:07212de2fec1 | 81 | |
vazbyte | 0:07212de2fec1 | 82 | void printMacAddress() |
vazbyte | 0:07212de2fec1 | 83 | { |
vazbyte | 0:07212de2fec1 | 84 | /* Print out device MAC address to the console*/ |
vazbyte | 0:07212de2fec1 | 85 | Gap::AddressType_t addr_type; |
vazbyte | 0:07212de2fec1 | 86 | Gap::Address_t address; |
vazbyte | 0:07212de2fec1 | 87 | BLE::Instance().gap().getAddress(&addr_type, address); |
vazbyte | 0:07212de2fec1 | 88 | printf("DEVICE MAC ADDRESS: "); |
vazbyte | 0:07212de2fec1 | 89 | for (int i = 5; i >= 1; i--){ |
vazbyte | 0:07212de2fec1 | 90 | printf("%02x:", address[i]); |
vazbyte | 0:07212de2fec1 | 91 | } |
vazbyte | 0:07212de2fec1 | 92 | printf("%02x\r\n", address[0]); |
vazbyte | 0:07212de2fec1 | 93 | } |
vazbyte | 0:07212de2fec1 | 94 | |
vazbyte | 0:07212de2fec1 | 95 | /** |
vazbyte | 0:07212de2fec1 | 96 | * Callback triggered when the ble initialization process has finished |
vazbyte | 0:07212de2fec1 | 97 | */ |
vazbyte | 0:07212de2fec1 | 98 | void bleInitComplete(BLE::InitializationCompleteCallbackContext *params) |
vazbyte | 0:07212de2fec1 | 99 | { |
vazbyte | 0:07212de2fec1 | 100 | BLE& ble = params->ble; |
vazbyte | 0:07212de2fec1 | 101 | ble_error_t error = params->error; |
vazbyte | 0:07212de2fec1 | 102 | |
vazbyte | 0:07212de2fec1 | 103 | if (error != BLE_ERROR_NONE) { |
vazbyte | 0:07212de2fec1 | 104 | /* In case of error, forward the error handling to onBleInitError */ |
vazbyte | 0:07212de2fec1 | 105 | onBleInitError(ble, error); |
vazbyte | 0:07212de2fec1 | 106 | return; |
vazbyte | 0:07212de2fec1 | 107 | } |
vazbyte | 0:07212de2fec1 | 108 | |
vazbyte | 0:07212de2fec1 | 109 | /* Ensure that it is the default instance of BLE */ |
vazbyte | 0:07212de2fec1 | 110 | if(ble.getInstanceID() != BLE::DEFAULT_INSTANCE) { |
vazbyte | 0:07212de2fec1 | 111 | return; |
vazbyte | 0:07212de2fec1 | 112 | } |
vazbyte | 0:07212de2fec1 | 113 | |
vazbyte | 0:07212de2fec1 | 114 | ble.gap().onDisconnection(disconnectionCallback); |
vazbyte | 0:07212de2fec1 | 115 | |
vazbyte | 0:07212de2fec1 | 116 | /* Setup primary service */ |
vazbyte | 1:df8884d38960 | 117 | hrService = new HeartRateService(ble, hrmCounter, HeartRateService::LOCATION_FINGER); |
vazbyte | 0:07212de2fec1 | 118 | |
vazbyte | 0:07212de2fec1 | 119 | /* Setup advertising */ |
vazbyte | 0:07212de2fec1 | 120 | ble.gap().accumulateAdvertisingPayload(GapAdvertisingData::BREDR_NOT_SUPPORTED | GapAdvertisingData::LE_GENERAL_DISCOVERABLE); |
vazbyte | 0:07212de2fec1 | 121 | ble.gap().accumulateAdvertisingPayload(GapAdvertisingData::COMPLETE_LIST_16BIT_SERVICE_IDS, (uint8_t *) uuid16_list, sizeof(uuid16_list)); |
vazbyte | 0:07212de2fec1 | 122 | ble.gap().accumulateAdvertisingPayload(GapAdvertisingData::COMPLETE_LOCAL_NAME, (uint8_t *) DEVICE_NAME, sizeof(DEVICE_NAME)); |
vazbyte | 0:07212de2fec1 | 123 | ble.gap().setAdvertisingType(GapAdvertisingParams::ADV_CONNECTABLE_UNDIRECTED); |
vazbyte | 0:07212de2fec1 | 124 | ble.gap().setAdvertisingInterval(1000); /* 1000ms */ |
vazbyte | 0:07212de2fec1 | 125 | ble.gap().startAdvertising(); |
vazbyte | 0:07212de2fec1 | 126 | |
vazbyte | 0:07212de2fec1 | 127 | printMacAddress(); |
vazbyte | 0:07212de2fec1 | 128 | } |
vazbyte | 0:07212de2fec1 | 129 | |
vazbyte | 0:07212de2fec1 | 130 | void scheduleBleEventsProcessing(BLE::OnEventsToProcessCallbackContext* context) { |
vazbyte | 0:07212de2fec1 | 131 | BLE &ble = BLE::Instance(); |
vazbyte | 0:07212de2fec1 | 132 | eventQueue.call(Callback<void()>(&ble, &BLE::processEvents)); |
vazbyte | 0:07212de2fec1 | 133 | } |
vazbyte | 0:07212de2fec1 | 134 | |
vazbyte | 0:07212de2fec1 | 135 | int main() |
vazbyte | 4:af0530752b76 | 136 | { |
vazbyte | 2:1957a4985d6e | 137 | mpu.initMPU9250(); |
vazbyte | 4:af0530752b76 | 138 | eventQueue.call_every(400, blinkCallback); |
vazbyte | 0:07212de2fec1 | 139 | |
vazbyte | 0:07212de2fec1 | 140 | BLE &ble = BLE::Instance(); |
vazbyte | 0:07212de2fec1 | 141 | ble.onEventsToProcess(scheduleBleEventsProcessing); |
vazbyte | 0:07212de2fec1 | 142 | ble.init(bleInitComplete); |
vazbyte | 0:07212de2fec1 | 143 | |
vazbyte | 0:07212de2fec1 | 144 | eventQueue.dispatch_forever(); |
vazbyte | 0:07212de2fec1 | 145 | |
vazbyte | 0:07212de2fec1 | 146 | return 0; |
vazbyte | 0:07212de2fec1 | 147 | } |