From b0631d15ea9883a780c9eacb55a8e9e849a04b05 Mon Sep 17 00:00:00 2001 From: flightlessmango Date: Sat, 9 Dec 2023 11:28:10 +0100 Subject: [PATCH] cpu: temp: look for TSI0_TEMP --- src/cpu.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cpu.cpp b/src/cpu.cpp index 402661ea..3ea76711 100644 --- a/src/cpu.cpp +++ b/src/cpu.cpp @@ -519,6 +519,9 @@ bool CPUStats::GetCpuFile() { } else if (name == "it8603") { find_input(path, "temp", input, "temp1"); break; + } else if (name == "nct6797") { + find_input(path, "temp", input, "TSI0_TEMP"); + break; } else { path.clear(); }