Hello
When sending a string from python on a raspberry pi via bluetooth to the chat example the message is always 1 character followed by the rest of the characters.
For instance ser.write('hello'.encode('utf-8')) from the pi gives two AStream_NewData events. So what is output is:
h
ello
And it doesn't seem to matter what length the string I send is, or if it contains a carriage return.
Any ideas?
When sending a string from python on a raspberry pi via bluetooth to the chat example the message is always 1 character followed by the rest of the characters.
For instance ser.write('hello'.encode('utf-8')) from the pi gives two AStream_NewData events. So what is output is:
h
ello
And it doesn't seem to matter what length the string I send is, or if it contains a carriage return.
Any ideas?