-
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 #452 from adafruit/add-sound-service
Add more sensor services
- Loading branch information
Showing
25 changed files
with
701 additions
and
79 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
64 changes: 64 additions & 0 deletions
64
libraries/BLEAdafruitService/src/services/BLEAdafruitColor.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,64 @@ | ||
/* | ||
* 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 | ||
* | ||
* Color service 0A00 | ||
* - Color 0A01 | uint16_t[3] | Read + Notify | Red, Green, Blue each is 16-bit color | ||
* - Measurement Period 0001 | ||
*/ | ||
|
||
const uint8_t BLEAdafruitColor::UUID128_SERVICE[16] = | ||
{ | ||
0xB8, 0x6c, 0x75, 0x05, 0xE9, 0x25, 0xBD, 0x93, | ||
0xA8, 0x42, 0x32, 0xC3, 0x00, 0x0A, 0xAF, 0xAD | ||
}; | ||
|
||
const uint8_t BLEAdafruitColor::UUID128_CHR_DATA[16] = | ||
{ | ||
0xB8, 0x6c, 0x75, 0x05, 0xE9, 0x25, 0xBD, 0x93, | ||
0xA8, 0x42, 0x32, 0xC3, 0x01, 0x0A, 0xAF, 0xAD | ||
}; | ||
|
||
// Constructor | ||
BLEAdafruitColor::BLEAdafruitColor(void) | ||
: BLEAdafruitSensor(UUID128_SERVICE, UUID128_CHR_DATA) | ||
{ | ||
// Setup Measurement Characteristic | ||
_measurement.setProperties(CHR_PROPS_READ | CHR_PROPS_NOTIFY); | ||
_measurement.setPermission(SECMODE_OPEN, SECMODE_NO_ACCESS); | ||
_measurement.setFixedLen(2*3); | ||
} |
39 changes: 39 additions & 0 deletions
39
libraries/BLEAdafruitService/src/services/BLEAdafruitColor.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_COLOR_H_ | ||
#define BLEADAFRUIT_COLOR_H_ | ||
|
||
class BLEAdafruitColor : public BLEAdafruitSensor | ||
{ | ||
public: | ||
static const uint8_t UUID128_SERVICE[16]; | ||
static const uint8_t UUID128_CHR_DATA[16]; | ||
|
||
BLEAdafruitColor(void); | ||
|
||
using BLEAdafruitSensor::begin; | ||
}; | ||
|
||
#endif /* BLEADAFRUIT_COLOR_H_ */ |
64 changes: 64 additions & 0 deletions
64
libraries/BLEAdafruitService/src/services/BLEAdafruitGesture.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,64 @@ | ||
/* | ||
* 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 | ||
* | ||
* Gesture service 06F00 | ||
* - Button 0F01 | unt8_t | Read + Notify | e.g 0: no gesture, 1: Up, 2: Down, 3: Left, 4: Right | ||
* - Measurement Period 0001 | ||
*/ | ||
|
||
const uint8_t BLEAdafruitGesture::UUID128_SERVICE[16] = | ||
{ | ||
0xB8, 0x6c, 0x75, 0x05, 0xE9, 0x25, 0xBD, 0x93, | ||
0xA8, 0x42, 0x32, 0xC3, 0x00, 0x0F, 0xAF, 0xAD | ||
}; | ||
|
||
const uint8_t BLEAdafruitGesture::UUID128_CHR_DATA[16] = | ||
{ | ||
0xB8, 0x6c, 0x75, 0x05, 0xE9, 0x25, 0xBD, 0x93, | ||
0xA8, 0x42, 0x32, 0xC3, 0x01, 0x0F, 0xAF, 0xAD | ||
}; | ||
|
||
// Constructor | ||
BLEAdafruitGesture::BLEAdafruitGesture(void) | ||
: BLEAdafruitSensor(UUID128_SERVICE, UUID128_CHR_DATA) | ||
{ | ||
// Setup Measurement Characteristic | ||
_measurement.setProperties(CHR_PROPS_READ | CHR_PROPS_NOTIFY); | ||
_measurement.setPermission(SECMODE_OPEN, SECMODE_NO_ACCESS); | ||
_measurement.setFixedLen(1); | ||
} |
39 changes: 39 additions & 0 deletions
39
libraries/BLEAdafruitService/src/services/BLEAdafruitGesture.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_GESTURE_H_ | ||
#define BLEADAFRUIT_GESTURE_H_ | ||
|
||
class BLEAdafruitGesture : public BLEAdafruitSensor | ||
{ | ||
public: | ||
static const uint8_t UUID128_SERVICE[16]; | ||
static const uint8_t UUID128_CHR_DATA[16]; | ||
|
||
BLEAdafruitGesture(void); | ||
|
||
using BLEAdafruitSensor::begin; | ||
}; | ||
|
||
#endif /* BLEADAFRUIT_GESTURE_H_ */ |
Oops, something went wrong.