mirror of
https://github.com/morgan9e/macos-stats
synced 2026-04-14 00:04:15 +09:00
feat: increased DC In Voltage cutoff to match real world measurements (#1356)
This commit is contained in:
@@ -216,7 +216,7 @@ internal class SensorsReader: Reader<[Sensor_p]> {
|
||||
}
|
||||
|
||||
// cut off low dc in voltage
|
||||
if let idx = self.list.firstIndex(where: { $0.key == "VD0R" }), self.list[idx].value < 0.1 {
|
||||
if let idx = self.list.firstIndex(where: { $0.key == "VD0R" }), self.list[idx].value < 0.4 {
|
||||
self.list[idx].value = 0
|
||||
}
|
||||
// cut off low dc in current
|
||||
|
||||
Reference in New Issue
Block a user