Hi all,
I am having an issue here. I am using a BLE module and I can read and write characteristic fine using BLE explorer and LightBlue apps. However, when I try to write some data to same characteristic there is no error message but it does not write to the characteristic. The code snippet below is pretty simple but any ideas what else I can look for? BTW I do read the values before I write as explained in the documentation.
Thanks all!
I am having an issue here. I am using a BLE module and I can read and write characteristic fine using BLE explorer and LightBlue apps. However, when I try to write some data to same characteristic there is no error message but it does not write to the characteristic. The code snippet below is pretty simple but any ideas what else I can look for? BTW I do read the values before I write as explained in the documentation.
Thanks all!
B4X:
Dim ByteC As ByteConverter
Dim data() As Byte
data=ByteC.HexToBytes("2222")
manager.WriteData("AB230001-4A12-1234-ABCD-123456789012", "AB230003-4A12-1234-ABCD-123456789012", data)