You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've had success using bluepy to connect to and read characteristics from the raspberry pi, but when I try to use the write() method, it isn't working:
Firstly, is the characteristic at chars[9] actually writable? If you run 'python btle.py xx:xx:xx:xx:xx:xx' it should give a list of all characteristics and their properties. It would be helpful to have the output from this command here.
I've had success using bluepy to connect to and read characteristics from the raspberry pi, but when I try to use the write() method, it isn't working:
returns '\x00'
but
chars[9].write('02')
and
chars[9].write('\x02')
accomplish nothing, because if I issue again
again I get '\x00'
with gatttool in bash the following works:
How can I pass data to a characteristic using the write() method?
Thanks!
The text was updated successfully, but these errors were encountered: