I've got a 2 byte array (21, 121) that needs to be converted to a decimal value. The piece of hardware I read the numbers from includes this handy little table in the manual:
The problem is that I'm not sure what this handy little table is trying to tell me. Can someone help interpret it and suggest a way I can convert it to decimal using c#?
I've generally used BitConverter
to get this converted, but in this case, I get a value of 30977. Since this is a temperature value, I find it hard to believe it's that hot... so I suspect my regular use of BitConvert isn't sufficient.