mirror of
https://github.com/kawasaki/pyscrlink.git
synced 2026-01-05 03:00:13 +01:00
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:
committed by
Shin'ichiro Kawasaki
parent
cea2723a0b
commit
865c613890
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user