Skip to content

Commit 91b768b

Browse files
committed
Fix RTX 40 Series Hot Spot and Memory Junction sensor not reading
1 parent 880053e commit 91b768b

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

OpenHardwareMonitorLib/Hardware/Gpu/NvidiaGpu.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,12 @@ public override void Update()
481481
_hotSpotTemperature.Value = 0;
482482
_memoryJunctionTemperature.Value = thermalSensors.Temperatures[2] / 256.0f;
483483
}
484+
// RTX 40xx series
485+
else if (Name.StartsWith("NVIDIA GeForce RTX 40", StringComparison.OrdinalIgnoreCase))
486+
{
487+
_hotSpotTemperature.Value = thermalSensors.Temperatures[1] / 256.0f;
488+
_memoryJunctionTemperature.Value = thermalSensors.Temperatures[7] / 256.0f;
489+
}
484490
else
485491
{
486492
_hotSpotTemperature.Value = thermalSensors.Temperatures[1] / 256.0f;

0 commit comments

Comments
 (0)