Sub btStream_NewData (Buffer() As Byte)
Try
tmpBuffer = tmpBuffer & Conv.HexFromBytes(Buffer)
Log(tmpBuffer)
If tmpBuffer.Length > 14 And tmpBuffer.StartsWith("51") Then
ShowResultsActivity(FindDataTypeAndParse(tmpBuffer))
tmpBuffer = ""
End If
Catch
ToastMessageShow("BT read response error",True)
End Try
End Sub