Ignoring temperature sensors > 120C

This commit is contained in:
macmade
2023-02-06 22:55:43 +01:00
parent 1f850a9377
commit fc27924de8

View File

@@ -60,7 +60,7 @@ public class ThermalLog: NSObject
let all = [ ioHID, smc ].flatMap { $0 }.filter
{
$0.1.temperature > 0 && $0.1.temperature < 150
$0.1.temperature > 0 && $0.1.temperature < 120
}
return Dictionary( uniqueKeysWithValues: all )