filter: Removed UUID conversion

Scratch 3.0 sends full UUID for LEGO Boost Extension.
If other extensions don't do this, a classifier
will be needed.
This commit is contained in:
MDE
2020-01-11 21:50:08 +01:00
committed by Shin'ichiro Kawasaki
parent cea2723a0b
commit 865c613890

View File

@@ -206,7 +206,7 @@ class BLESession(Session):
if 'services' in f:
for s in f['services']:
logger.debug(f"sevice to check: {s}")
given_uuid = UUID(int(s))
given_uuid = s
logger.debug(f"given: {given_uuid}")
service_class_uuid = dev.getValueText(0x3)
if not service_class_uuid: