!7 cmodule CPUTemp > DynBigNumber { int digits = 0; switchable bool fahrenheit; start { setDescription("CPU TEMP"); doEveryAndNow(1000, r actualUpdate); } void actualUpdate { //time "CPU Temp" { // <= 5 ms double temp = oshi_cpuTemperature(); if (fahrenheit) temp = celsiusToFahrenheit(temp); setValue(formatDoubleX(temp, digits) + " °" + (fahrenheit ? "F" : "C")); //} } }