I am receiving a Buffer 40 48 f5 c3 3f b4 7a e1 3f 35 c2 8f
with the following values, the values are coded as Float32 :
3.14: 0x4048f5c3
1.41: 0x3fb47ae1
0.71: 0x3f35c28f
Can I map the buffer into a json as a row of numbers:
{
value1: 3.14,
value2: 1.41,
value3: 0.71,
}
or into a Array as numbers [3.14, 1.41, 0.71]