diff options
author | Ondrej Čerman | 2020-02-16 15:54:27 +0100 |
---|---|---|
committer | Ondrej Čerman | 2020-02-16 15:54:27 +0100 |
commit | bd6e91cc4d5f64a8ea1fbf4eafdf4cb0ce0a4566 (patch) | |
tree | 2ed5c11f9cc03768dd605164b7e90cf5e440f792 | |
parent | e8b4b33b8973fd53473af2e8c550de1cb4c5e24c (diff) |
Added support up to 8 CCD Temperatures
-rw-r--r-- | src/ss/zenpower.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ss/zenpower.c b/src/ss/zenpower.c index 2e5151d..56c686d 100644 --- a/src/ss/zenpower.c +++ b/src/ss/zenpower.c @@ -30,6 +30,12 @@ static HwmonSensorType hwmon_stype[] = { {"CPU Temperature (tDie)", "temp2_input", " %6.2f°C", 1000.0}, {"CCD1 Temperature", "temp3_input", " %6.2f°C", 1000.0}, {"CCD2 Temperature", "temp4_input", " %6.2f°C", 1000.0}, + {"CCD3 Temperature", "temp5_input", " %6.2f°C", 1000.0}, + {"CCD4 Temperature", "temp6_input", " %6.2f°C", 1000.0}, + {"CCD5 Temperature", "temp7_input", " %6.2f°C", 1000.0}, + {"CCD6 Temperature", "temp8_input", " %6.2f°C", 1000.0}, + {"CCD7 Temperature", "temp9_input", " %6.2f°C", 1000.0}, + {"CCD8 Temperature", "temp10_input", " %6.2f°C", 1000.0}, {"CPU Core Voltage (SVI2)", "in1_input", " %8.3f V", 1000.0}, {"SOC Voltage (SVI2)", "in2_input", " %8.3f V", 1000.0}, {"CPU Core Current (SVI2)", "curr1_input", " %8.3f A", 1000.0}, |