Loading…
Loading…
方法名称: met_decode
方法ID: 0x40CF
方法标签: Method decode
方法描述: Decode big numbers from the internal sensor representation
- {
- unsigned char exponent;
- float result;
- exponent = input_value >> 14;
- result = input_value & 0x3fff;
- switch (exponent)
- {
- case 0:
- break;
- case 1:
- result *= 10.;
请登录以获得完整内容