BLE temperature profile using digital DS1820 or analog LM35 sensors

Dependencies:   DS1820

Committer:
gkroussos
Date:
Sat Mar 07 16:23:41 2015 +0000
Revision:
0:637031152314
Working version 1.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
gkroussos 0:637031152314 1 /* mbed Microcontroller Library
gkroussos 0:637031152314 2 * Copyright (c) 2006-2013 ARM Limited
gkroussos 0:637031152314 3 *
gkroussos 0:637031152314 4 * Licensed under the Apache License, Version 2.0 (the "License");
gkroussos 0:637031152314 5 * you may not use this file except in compliance with the License.
gkroussos 0:637031152314 6 * You may obtain a copy of the License at
gkroussos 0:637031152314 7 *
gkroussos 0:637031152314 8 * http://www.apache.org/licenses/LICENSE-2.0
gkroussos 0:637031152314 9 *
gkroussos 0:637031152314 10 * Unless required by applicable law or agreed to in writing, software
gkroussos 0:637031152314 11 * distributed under the License is distributed on an "AS IS" BASIS,
gkroussos 0:637031152314 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
gkroussos 0:637031152314 13 * See the License for the specific language governing permissions and
gkroussos 0:637031152314 14 * limitations under the License.
gkroussos 0:637031152314 15 */
gkroussos 0:637031152314 16
gkroussos 0:637031152314 17 #ifndef __GATT_SERVER_H__
gkroussos 0:637031152314 18 #define __GATT_SERVER_H__
gkroussos 0:637031152314 19
gkroussos 0:637031152314 20 #include "mbed.h"
gkroussos 0:637031152314 21 #include "blecommon.h"
gkroussos 0:637031152314 22 #include "GattService.h"
gkroussos 0:637031152314 23 #include "GattServerEvents.h"
gkroussos 0:637031152314 24
gkroussos 0:637031152314 25 /**************************************************************************/
gkroussos 0:637031152314 26 /*!
gkroussos 0:637031152314 27 \brief
gkroussos 0:637031152314 28 The base class used to abstract GATT Server functionality to a specific
gkroussos 0:637031152314 29 radio transceiver, SOC or BLE Stack.
gkroussos 0:637031152314 30 */
gkroussos 0:637031152314 31 /**************************************************************************/
gkroussos 0:637031152314 32 class GattServer
gkroussos 0:637031152314 33 {
gkroussos 0:637031152314 34 private:
gkroussos 0:637031152314 35 GattServerEvents *m_pEventHandler;
gkroussos 0:637031152314 36
gkroussos 0:637031152314 37 public:
gkroussos 0:637031152314 38 /* These functions must be defined in the sub-class */
gkroussos 0:637031152314 39 virtual ble_error_t addService(GattService &) = 0;
gkroussos 0:637031152314 40 virtual ble_error_t readValue(uint16_t, uint8_t[], uint16_t) = 0;
gkroussos 0:637031152314 41 virtual ble_error_t updateValue(uint16_t, uint8_t[], uint16_t) = 0;
gkroussos 0:637031152314 42
gkroussos 0:637031152314 43 // ToDo: For updateValue, check the CCCD to see if the value we are
gkroussos 0:637031152314 44 // updating has the notify or indicate bits sent, and if BOTH are set
gkroussos 0:637031152314 45 // be sure to call sd_ble_gatts_hvx() twice with notify then indicate!
gkroussos 0:637031152314 46 // Strange use case, but valid and must be covered!
gkroussos 0:637031152314 47
gkroussos 0:637031152314 48 /* Event callback handlers */
gkroussos 0:637031152314 49 void setEventHandler(GattServerEvents *pEventHandler) {m_pEventHandler = pEventHandler;}
gkroussos 0:637031152314 50 void handleEvent(GattServerEvents::gattEvent_e type, uint16_t charHandle) {
gkroussos 0:637031152314 51 if (NULL == m_pEventHandler)
gkroussos 0:637031152314 52 return;
gkroussos 0:637031152314 53 switch(type) {
gkroussos 0:637031152314 54 case GattServerEvents::GATT_EVENT_DATA_SENT:
gkroussos 0:637031152314 55 m_pEventHandler->onDataSent(charHandle);
gkroussos 0:637031152314 56 break;
gkroussos 0:637031152314 57 case GattServerEvents::GATT_EVENT_DATA_WRITTEN:
gkroussos 0:637031152314 58 m_pEventHandler->onDataWritten(charHandle);
gkroussos 0:637031152314 59 break;
gkroussos 0:637031152314 60 case GattServerEvents::GATT_EVENT_UPDATES_ENABLED:
gkroussos 0:637031152314 61 m_pEventHandler->onUpdatesEnabled(charHandle);
gkroussos 0:637031152314 62 break;
gkroussos 0:637031152314 63 case GattServerEvents::GATT_EVENT_UPDATES_DISABLED:
gkroussos 0:637031152314 64 m_pEventHandler->onUpdatesDisabled(charHandle);
gkroussos 0:637031152314 65 break;
gkroussos 0:637031152314 66 case GattServerEvents::GATT_EVENT_CONFIRMATION_RECEIVED:
gkroussos 0:637031152314 67 m_pEventHandler->onConfirmationReceived(charHandle);
gkroussos 0:637031152314 68 break;
gkroussos 0:637031152314 69 }
gkroussos 0:637031152314 70 }
gkroussos 0:637031152314 71
gkroussos 0:637031152314 72 uint8_t serviceCount;
gkroussos 0:637031152314 73 uint8_t characteristicCount;
gkroussos 0:637031152314 74 };
gkroussos 0:637031152314 75
gkroussos 0:637031152314 76 #endif