-
Notifications
You must be signed in to change notification settings - Fork 510
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #442 from adafruit/clue-play
enhance Clue support
- Loading branch information
Showing
32 changed files
with
795 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
libraries/BLEAdafruitService/src/services/BLEAdafruitBaro.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2019 Ha Thach (tinyusb.org) for Adafruit Industries | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
|
||
#include "BLEAdafruitService.h" | ||
|
||
//--------------------------------------------------------------------+ | ||
// MACRO TYPEDEF CONSTANT ENUM DECLARATION | ||
//--------------------------------------------------------------------+ | ||
|
||
|
||
/* All Adafruit Service/Characteristic UUID128 share the same Base UUID: | ||
* ADAFxxx-C332-42A8-93BD-25E905756CB8 | ||
* | ||
* Shared Characteristics | ||
* - Measurement Period 0001 | int32_t | Read + Write | | ||
* ms between measurements, -1: stop reading, 0: update when changes | ||
* | ||
* Barometric service 0800 | ||
* - Pressure 0801 | float[3] | Read + Notify | x, y, z | ||
* - Measurement Period 0001 | ||
*/ | ||
|
||
const uint8_t BLEAdafruitBaro::UUID128_SERVICE[16] = | ||
{ | ||
0xB8, 0x6c, 0x75, 0x05, 0xE9, 0x25, 0xBD, 0x93, | ||
0xA8, 0x42, 0x32, 0xC3, 0x00, 0x08, 0xAF, 0xAD | ||
}; | ||
|
||
const uint8_t BLEAdafruitBaro::UUID128_CHR_DATA[16] = | ||
{ | ||
0xB8, 0x6c, 0x75, 0x05, 0xE9, 0x25, 0xBD, 0x93, | ||
0xA8, 0x42, 0x32, 0xC3, 0x01, 0x08, 0xAF, 0xAD | ||
}; | ||
|
||
// Constructor | ||
BLEAdafruitBaro::BLEAdafruitBaro(void) | ||
: BLEAdafruitSensor(UUID128_SERVICE, UUID128_CHR_DATA) | ||
{ | ||
|
||
} | ||
|
||
err_t BLEAdafruitBaro::begin (void) | ||
{ | ||
// Setup Measurement Characteristic | ||
_measurement.setProperties(CHR_PROPS_READ | CHR_PROPS_NOTIFY); | ||
_measurement.setPermission(SECMODE_OPEN, SECMODE_NO_ACCESS); | ||
_measurement.setFixedLen(4); | ||
|
||
// Invoke base class begin(), this will add Service, Measurement and Period characteristics | ||
VERIFY_STATUS( BLEAdafruitSensor::begin(DEFAULT_PERIOD) ); | ||
|
||
return ERROR_NONE; | ||
} |
39 changes: 39 additions & 0 deletions
39
libraries/BLEAdafruitService/src/services/BLEAdafruitBaro.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2019 Ha Thach (tinyusb.org) for Adafruit Industries | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
|
||
#ifndef BLEADAFRUIT_BARO_H_ | ||
#define BLEADAFRUIT_BARO_H_ | ||
|
||
class BLEAdafruitBaro : public BLEAdafruitSensor | ||
{ | ||
public: | ||
static const uint8_t UUID128_SERVICE[16]; | ||
static const uint8_t UUID128_CHR_DATA[16]; | ||
static const int32_t DEFAULT_PERIOD = 1000; | ||
|
||
BLEAdafruitBaro(void); | ||
virtual err_t begin(void); | ||
}; | ||
|
||
#endif /* BLEADAFRUIT_BARO_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
libraries/BLEAdafruitService/src/services/BLEAdafruitGyro.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2019 Ha Thach (tinyusb.org) for Adafruit Industries | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
|
||
#include "BLEAdafruitService.h" | ||
|
||
//--------------------------------------------------------------------+ | ||
// MACRO TYPEDEF CONSTANT ENUM DECLARATION | ||
//--------------------------------------------------------------------+ | ||
|
||
|
||
/* All Adafruit Service/Characteristic UUID128 share the same Base UUID: | ||
* ADAFxxx-C332-42A8-93BD-25E905756CB8 | ||
* | ||
* Shared Characteristics | ||
* - Measurement Period 0001 | int32_t | Read + Write | | ||
* ms between measurements, -1: stop reading, 0: update when changes | ||
* | ||
* Gyroscope service 0400 | ||
* - Gyro 0401 | float[3] | Read + Notify | x, y, z | ||
* - Measurement Period 0001 | ||
*/ | ||
|
||
const uint8_t BLEAdafruitGyro::UUID128_SERVICE[16] = | ||
{ | ||
0xB8, 0x6c, 0x75, 0x05, 0xE9, 0x25, 0xBD, 0x93, | ||
0xA8, 0x42, 0x32, 0xC3, 0x00, 0x04, 0xAF, 0xAD | ||
}; | ||
|
||
const uint8_t BLEAdafruitGyro::UUID128_CHR_DATA[16] = | ||
{ | ||
0xB8, 0x6c, 0x75, 0x05, 0xE9, 0x25, 0xBD, 0x93, | ||
0xA8, 0x42, 0x32, 0xC3, 0x01, 0x04, 0xAF, 0xAD | ||
}; | ||
|
||
// Constructor | ||
BLEAdafruitGyro::BLEAdafruitGyro(void) | ||
: BLEAdafruitSensor(UUID128_SERVICE, UUID128_CHR_DATA) | ||
{ | ||
|
||
} | ||
|
||
err_t BLEAdafruitGyro::begin (void) | ||
{ | ||
// Setup Measurement Characteristic | ||
_measurement.setProperties(CHR_PROPS_READ | CHR_PROPS_NOTIFY); | ||
_measurement.setPermission(SECMODE_OPEN, SECMODE_NO_ACCESS); | ||
_measurement.setFixedLen(4*3); // float[3] | ||
|
||
// Invoke base class begin(), this will add Service, Measurement and Period characteristics | ||
VERIFY_STATUS( BLEAdafruitSensor::begin(DEFAULT_PERIOD) ); | ||
|
||
return ERROR_NONE; | ||
} |
Oops, something went wrong.