Decode some data

From: ANT_THOMAS26 May 2020 12:06
To: ANT_THOMAS 6 of 10
Also, the leading zeros in the array may be the padding at the end, as some other examples contain "128" at place 2, so I think I need to include them. But that's easy enough.
0, 0, 108, 65
From: ANT_THOMAS26 May 2020 12:08
To: Peter (BOUGHTONP) 7 of 10
Numbers are correct, as I've now manually successfully decoded it.
In terms of documentation, I've made and coded these sensors myself, I just didn't entirely understand how the data was encoded with the library (RadioHead ASK).

Now just need to figure out a command line binary to IEEE 754 floating point number conversion.
From: Peter (BOUGHTONP)26 May 2020 12:21
To: ANT_THOMAS 8 of 10
Bash doesn't do floating point, but I still expected it to be a simple case of calling bc or something, but nothing useful comes up from relevant searches.

Guess you'll have to convert your manual steps to Perl or Python?

From: ANT_THOMAS26 May 2020 12:26
To: Peter (BOUGHTONP) 9 of 10
Yeah, seen similar. Was wanting to use bc. Now looking at some other simple programs, C++, Perl or Python should handle it, then feed it back in.
From: ANT_THOMAS26 May 2020 13:36
To: ALL10 of 10
Done, decoded using some simple python.