From 68ffa1bc0bcd9abad59a2e64bdd8e36ca8f5e4c0 Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Sun, 23 Nov 2025 22:33:16 +0000 Subject: [PATCH] Feat: Add support for Raspberry Pi RP1 ADC temperature sensor (Fixes #745) - Added 'rp1_adc' to the list of recognized CPU temperature chips --- internal/monitoring/temperature.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/monitoring/temperature.go b/internal/monitoring/temperature.go index dd724f1..4e53e6c 100644 --- a/internal/monitoring/temperature.go +++ b/internal/monitoring/temperature.go @@ -476,6 +476,7 @@ func (tc *TemperatureCollector) parseSensorsJSON(jsonStr string) (*models.Temper strings.Contains(chipLower, "w83627") || // Winbond W83627 SuperIO series strings.Contains(chipLower, "f71882") || // Fintek F71882 SuperIO strings.Contains(chipLower, "cpu_thermal") || // Raspberry Pi CPU temperature + strings.Contains(chipLower, "rp1_adc") || // Raspberry Pi RP1 ADC strings.Contains(chipLower, "rpitemp") { foundCPUChip = true log.Debug().