Open timoline opened 4 years ago
Here the function I use for temp, wintmp and winchl
/** * Parse temperature * * @param timestamp : */ function _parseTemperature(temp) { var result = parseInt(temp, 16); if(result >= 32768){ result = 32768 - result; } var parsedTemperature = (result / 10.0).toString(); return parsedTemperature; }
Here the function I use for temp, wintmp and winchl