File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 19
19
-----
20
20
* Fixed ``discovered_devices_and_advertisement_data `` returning devices that should
21
21
be filtered out by service UUIDs. Fixes #1576.
22
+ * Fixed a ``Descriptor None was not found! `` exception occurring in ``start_notify() `` on Android. Fixes #823.
22
23
23
24
`0.22.1 `_ (2024-05-07)
24
25
======================
Original file line number Diff line number Diff line change 5
5
from jnius import autoclass , cast
6
6
7
7
import bleak .exc
8
+ from bleak .uuids import normalize_uuid_16
8
9
9
10
# caching constants avoids unnecessary extra use of the jni-python interface, which can be slow
10
11
@@ -87,4 +88,4 @@ class ScanFailed(enum.IntEnum):
87
88
BluetoothGattCharacteristic .PROPERTY_WRITE_NO_RESPONSE : "write-without-response" ,
88
89
}
89
90
90
- CLIENT_CHARACTERISTIC_CONFIGURATION_UUID = "2902"
91
+ CLIENT_CHARACTERISTIC_CONFIGURATION_UUID = normalize_uuid_16 ( 0x2902 )
You can’t perform that action at this time.
0 commit comments