39 Byte high_frame(bytes + 1);
40 int32_t high = high_frame.get_byte(0, 8);
41 Byte low_frame(bytes + 0);
42 int32_t low = low_frame.get_byte(0, 8);
43 int32_t value = (high << 8) | low;
47 return value * 0.000200;
51 Byte high_frame(bytes + 3);
52 int32_t high = high_frame.get_byte(0, 8);
53 Byte low_frame(bytes + 2);
54 int32_t low = low_frame.get_byte(0, 8);
55 int32_t value = (high << 8) | low;
59 return value * 0.000200;