done with data page 0x10

byte 7 isn't checked
This commit is contained in:
shinichi
2020-09-09 14:57:23 +02:00
parent 650f308cf5
commit bd40a117ec

View File

@@ -27,6 +27,10 @@ namespace Hardware
int input = bytes[4] | (bytes[5] << 8);
Console.WriteLine($"Speed is : {input * 0.01}m/s (Range 65.534m/4)");
if (bytes[6] != 0xFF)
{
Console.WriteLine("Heart rate byte: {0}", Convert.ToString(bytes[6],2));
}
break;
case 0x19: