提取浮点数 – bytesToFloat
从字节数组中提取整数。通常配合上位机协议解析器控件使用。
定义
float bytesToFloat(byte[] array, int start, int mode);
参数
- array:
字节数组
- start:
起始位置
- mode:
大小端。0 为小端模式,1为大端模式
返回值
提取出来的整数
示例
byte a[4] = {0xC3,0xF5,0x48,0x40};
numf9.valf = bytesToFloat(a,0,0); //浮点数控件numf9显示3.14