44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
|
"""
|
||
|
Interface class for the Bleak representation of a GATT Descriptor
|
||
|
|
||
|
Created on 2019-06-28 by kevincar <kevincarrolldavis@gmail.com>
|
||
|
|
||
|
"""
|
||
|
|
||
|
from CoreBluetooth import CBDescriptor
|
||
|
|
||
|
from ..corebluetooth.utils import cb_uuid_to_str
|
||
|
from ..descriptor import BleakGATTDescriptor
|
||
|
|
||
|
|
||
|
class BleakGATTDescriptorCoreBluetooth(BleakGATTDescriptor):
|
||
|
"""GATT Descriptor implementation for CoreBluetooth backend"""
|
||
|
|
||
|
def __init__(
|
||
|
self, obj: CBDescriptor, characteristic_uuid: str, characteristic_handle: int
|
||
|
):
|
||
|
super(BleakGATTDescriptorCoreBluetooth, self).__init__(obj)
|
||
|
self.obj: CBDescriptor = obj
|
||
|
self.__characteristic_uuid: str = characteristic_uuid
|
||
|
self.__characteristic_handle: int = characteristic_handle
|
||
|
|
||
|
@property
|
||
|
def characteristic_handle(self) -> int:
|
||
|
"""handle for the characteristic that this descriptor belongs to"""
|
||
|
return self.__characteristic_handle
|
||
|
|
||
|
@property
|
||
|
def characteristic_uuid(self) -> str:
|
||
|
"""UUID for the characteristic that this descriptor belongs to"""
|
||
|
return self.__characteristic_uuid
|
||
|
|
||
|
@property
|
||
|
def uuid(self) -> str:
|
||
|
"""UUID for this descriptor"""
|
||
|
return cb_uuid_to_str(self.obj.UUID())
|
||
|
|
||
|
@property
|
||
|
def handle(self) -> int:
|
||
|
"""Integer handle for this descriptor"""
|
||
|
return int(self.obj.handle())
|