I see that in the WriteValueAsync method you can pass an options dictionary to write the value and await a response.
The required options dictionary should contain type = request for that (my reference is https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/gatt-api.txt#n99)
How can I read the response / see whether the write was succesful? The WriteValueAsync task does not return a value directly.
I see that in the
WriteValueAsyncmethod you can pass anoptionsdictionary to write the value and await a response.The required options dictionary should contain
type = requestfor that (my reference is https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/gatt-api.txt#n99)How can I read the response / see whether the write was succesful? The
WriteValueAsynctask does not return a value directly.