Hello
Using the BLE example I can see my byte array from my BLE peripheral by hovering over Characteristics.Get(ServiceId)) with a break point. I just need help getting the array into something. I just can't work it out.
Here I can see my data (11,15,127,128,129)
Using the BLE example I can see my byte array from my BLE peripheral by hovering over Characteristics.Get(ServiceId)) with a break point. I just need help getting the array into something. I just can't work it out.
B4X:
Dim bc As ByteConverter
' Dim KeyCode As String
For Each ServiceId As String In Characteristics.Keys
' KeyCode = Characteristics.Get(ServiceId)
Dim result As Byte =(bc.IntsFromBytes(Characteristics.Get(ServiceId)))
lblStat.Text = result