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 #include <stdio.h>
gkroussos 0:637031152314 18 #include <string.h>
gkroussos 0:637031152314 19
gkroussos 0:637031152314 20 #include "GattCharacteristic.h"
gkroussos 0:637031152314 21
gkroussos 0:637031152314 22 /**************************************************************************/
gkroussos 0:637031152314 23 /*!
gkroussos 0:637031152314 24 @brief Creates a new GattCharacteristic using the specified 16-bit
gkroussos 0:637031152314 25 UUID, value length, and properties
gkroussos 0:637031152314 26
gkroussos 0:637031152314 27 @note The UUID value must be unique in the service and is normally >1
gkroussos 0:637031152314 28
gkroussos 0:637031152314 29 @param[in] id
gkroussos 0:637031152314 30 The 16-bit UUID to use for this characteristic
gkroussos 0:637031152314 31 @param[in] minLen
gkroussos 0:637031152314 32 The min length in bytes of this characteristic's value
gkroussos 0:637031152314 33 @param[in] maxLen
gkroussos 0:637031152314 34 The max length in bytes of this characteristic's value
gkroussos 0:637031152314 35 @param[in] props
gkroussos 0:637031152314 36 The 8-bit bit field containing the characteristic's
gkroussos 0:637031152314 37 properties
gkroussos 0:637031152314 38
gkroussos 0:637031152314 39 @section EXAMPLE
gkroussos 0:637031152314 40
gkroussos 0:637031152314 41 @code
gkroussos 0:637031152314 42
gkroussos 0:637031152314 43 // UUID = 0x2A19, Min length 2, Max len = 2, Properties = write
gkroussos 0:637031152314 44 GattCharacteristic c = GattCharacteristic( 0x2A19, 2, 2, BLE_GATT_CHAR_PROPERTIES_WRITE );
gkroussos 0:637031152314 45
gkroussos 0:637031152314 46 @endcode
gkroussos 0:637031152314 47 */
gkroussos 0:637031152314 48 /**************************************************************************/
gkroussos 0:637031152314 49 GattCharacteristic::GattCharacteristic(uint16_t id, uint16_t minLen, uint16_t maxLen, uint8_t props)
gkroussos 0:637031152314 50 {
gkroussos 0:637031152314 51 uuid = id;
gkroussos 0:637031152314 52 memcpy(&properties, &props, 1);
gkroussos 0:637031152314 53 lenMin = minLen;
gkroussos 0:637031152314 54 lenMax = maxLen;
gkroussos 0:637031152314 55 // handle = 0;
gkroussos 0:637031152314 56 }
gkroussos 0:637031152314 57
gkroussos 0:637031152314 58 /**************************************************************************/
gkroussos 0:637031152314 59 /*!
gkroussos 0:637031152314 60 Destructor
gkroussos 0:637031152314 61 */
gkroussos 0:637031152314 62 /**************************************************************************/
gkroussos 0:637031152314 63 GattCharacteristic::~GattCharacteristic(void)
gkroussos 0:637031152314 64 {
gkroussos 0:637031152314 65 }