-
|
I want to subscribe a characteristic like following: Characteristic(handle=0x003C, uuid=0000AAAA-0000-2222-8888-00805F9B1111, READ|NOTIFY|INDICATE)I want to handle data which sent by remote gatt server through this characteristic. |
Beta Was this translation helpful? Give feedback.
Answered by
zxzxwu
May 19, 2025
Replies: 1 comment 4 replies
-
|
You should be able to discover characteristics, find the one you want and subscribe them. https://github.com/google/bumble/blob/main/examples/run_gatt_client.py https://github.com/google/bumble/blob/main/bumble/gatt_client.py#L232 https://github.com/google/bumble/blob/main/examples/battery_client.py |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
Squirre17
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should be able to discover characteristics, find the one you want and subscribe them.
https://github.com/google/bumble/blob/main/examples/run_gatt_client.py
https://github.com/google/bumble/blob/main/bumble/gatt_client.py#L232
https://github.com/google/bumble/blob/main/examples/battery_client.py