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_EVENTS_H__
gkroussos 0:637031152314 18 #define __GATT_SERVER_EVENTS_H__
gkroussos 0:637031152314 19
gkroussos 0:637031152314 20 #include "blecommon.h"
gkroussos 0:637031152314 21 #include "mbed.h"
gkroussos 0:637031152314 22
gkroussos 0:637031152314 23 /**************************************************************************/
gkroussos 0:637031152314 24 /*!
gkroussos 0:637031152314 25 \brief
gkroussos 0:637031152314 26 The base class used to abstract away the callback events that can be
gkroussos 0:637031152314 27 triggered with the GATT Server.
gkroussos 0:637031152314 28 */
gkroussos 0:637031152314 29 /**************************************************************************/
gkroussos 0:637031152314 30 class GattServerEvents {
gkroussos 0:637031152314 31 public:
gkroussos 0:637031152314 32 /******************************************************************/
gkroussos 0:637031152314 33 /*!
gkroussos 0:637031152314 34 \brief
gkroussos 0:637031152314 35 Identifies GATT events generated by the radio HW when an event
gkroussos 0:637031152314 36 callback occurs
gkroussos 0:637031152314 37 */
gkroussos 0:637031152314 38 /******************************************************************/
gkroussos 0:637031152314 39 typedef enum gattEvent_e
gkroussos 0:637031152314 40 {
gkroussos 0:637031152314 41 GATT_EVENT_DATA_SENT = 1, /**< Fired when a msg was successfully sent out (notify only?) */
gkroussos 0:637031152314 42 GATT_EVENT_DATA_WRITTEN = 2, /**< Client wrote data to Server (separate into char and descriptor writes?) */
gkroussos 0:637031152314 43 GATT_EVENT_UPDATES_ENABLED = 3, /**< Notify/Indicate Enabled in CCCD */
gkroussos 0:637031152314 44 GATT_EVENT_UPDATES_DISABLED = 4, /**< Notify/Indicate Disabled in CCCD */
gkroussos 0:637031152314 45 GATT_EVENT_CONFIRMATION_RECEIVED = 5 /**< Response received from Indicate message */
gkroussos 0:637031152314 46 } gattEvent_t;
gkroussos 0:637031152314 47
gkroussos 0:637031152314 48 /******************************************************************/
gkroussos 0:637031152314 49 /*!
gkroussos 0:637031152314 50 \brief
gkroussos 0:637031152314 51 A message was successfully transmitted
gkroussos 0:637031152314 52 */
gkroussos 0:637031152314 53 /******************************************************************/
gkroussos 0:637031152314 54 virtual void onDataSent(uint16_t charHandle) {}
gkroussos 0:637031152314 55
gkroussos 0:637031152314 56 /******************************************************************/
gkroussos 0:637031152314 57 /*!
gkroussos 0:637031152314 58 \brief
gkroussos 0:637031152314 59 The GATT client (the phone, tablet, etc.) wrote data to a
gkroussos 0:637031152314 60 characteristic or descriptor on the GATT Server (the peripheral
gkroussos 0:637031152314 61 device).
gkroussos 0:637031152314 62 */
gkroussos 0:637031152314 63 /******************************************************************/
gkroussos 0:637031152314 64 virtual void onDataWritten(uint16_t charHandle) {}
gkroussos 0:637031152314 65
gkroussos 0:637031152314 66 /******************************************************************/
gkroussos 0:637031152314 67 /*!
gkroussos 0:637031152314 68 \brief
gkroussos 0:637031152314 69 A Notify or Indicate flag was enabled in the CCCD
gkroussos 0:637031152314 70 */
gkroussos 0:637031152314 71 /******************************************************************/
gkroussos 0:637031152314 72 virtual void onUpdatesEnabled(uint16_t charHandle) {}
gkroussos 0:637031152314 73
gkroussos 0:637031152314 74 /******************************************************************/
gkroussos 0:637031152314 75 /*!
gkroussos 0:637031152314 76 \brief
gkroussos 0:637031152314 77 A Notify or Indicate flag was disabled in the CCCD
gkroussos 0:637031152314 78 */
gkroussos 0:637031152314 79 /******************************************************************/
gkroussos 0:637031152314 80 virtual void onUpdatesDisabled(uint16_t charHandle) {}
gkroussos 0:637031152314 81
gkroussos 0:637031152314 82 /******************************************************************/
gkroussos 0:637031152314 83 /*!
gkroussos 0:637031152314 84 \brief
gkroussos 0:637031152314 85 A confirmation response was received from an Indicate message
gkroussos 0:637031152314 86 */
gkroussos 0:637031152314 87 /******************************************************************/
gkroussos 0:637031152314 88 virtual void onConfirmationReceived(uint16_t charHandle) {}
gkroussos 0:637031152314 89 };
gkroussos 0:637031152314 90
gkroussos 0:637031152314 91 #endif