C to F conversion wrong.
Brought to you by:
jnugent
when you convert from C to F the math is wrong.
it currently shows:
return round((9*($temp + 32)/5), 2) . "F";
But when doing this F value is way to high IE 27c is 80.6F, but the math above shows this as 106F
The line should read.
return round(($temp * 9)/5+32, 2) . "F";