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 __GAP_EVENTS_H__
gkroussos 0:637031152314 18 #define __GAP_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 GAP.
gkroussos 0:637031152314 28 */
gkroussos 0:637031152314 29 /**************************************************************************/
gkroussos 0:637031152314 30 class GapEvents {
gkroussos 0:637031152314 31 public:
gkroussos 0:637031152314 32 /******************************************************************/
gkroussos 0:637031152314 33 /*!
gkroussos 0:637031152314 34 \brief
gkroussos 0:637031152314 35 Identifies GAP 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 gapEvent_e
gkroussos 0:637031152314 40 {
gkroussos 0:637031152314 41 GAP_EVENT_TIMEOUT = 1, /**< Advertising timed out before a connection was established */
gkroussos 0:637031152314 42 GAP_EVENT_CONNECTED = 2, /**< A connection was established with a central device */
gkroussos 0:637031152314 43 GAP_EVENT_DISCONNECTED = 3 /**< A connection was closed or lost with a central device */
gkroussos 0:637031152314 44 } gapEvent_t;
gkroussos 0:637031152314 45
gkroussos 0:637031152314 46 /******************************************************************/
gkroussos 0:637031152314 47 /*!
gkroussos 0:637031152314 48 \brief
gkroussos 0:637031152314 49 Advertising timed out before a connection was established
gkroussos 0:637031152314 50 */
gkroussos 0:637031152314 51 /******************************************************************/
gkroussos 0:637031152314 52 virtual void onTimeout(void) {}
gkroussos 0:637031152314 53
gkroussos 0:637031152314 54 /******************************************************************/
gkroussos 0:637031152314 55 /*!
gkroussos 0:637031152314 56 \brief
gkroussos 0:637031152314 57 A connection was established with a central device
gkroussos 0:637031152314 58 */
gkroussos 0:637031152314 59 /******************************************************************/
gkroussos 0:637031152314 60 virtual void onConnected(void) {}
gkroussos 0:637031152314 61
gkroussos 0:637031152314 62 /******************************************************************/
gkroussos 0:637031152314 63 /*!
gkroussos 0:637031152314 64 \brief
gkroussos 0:637031152314 65 A connection was closed or lost with a central device
gkroussos 0:637031152314 66 */
gkroussos 0:637031152314 67 /******************************************************************/
gkroussos 0:637031152314 68 virtual void onDisconnected(void) {}
gkroussos 0:637031152314 69 };
gkroussos 0:637031152314 70
gkroussos 0:637031152314 71 #endif