Add avg and similar

This commit is contained in:
Kamil Trzciński 2022-11-12 17:06:34 +01:00
parent 8e582f372e
commit adddf9feca
5 changed files with 37 additions and 22 deletions

View file

@ -21,6 +21,7 @@ namespace FanControl
SensorName = "Package",
SensorType = SensorType.Power,
ValueDeadZone = 0.1f,
AvgSamples = 20,
Profiles = new Dictionary<FanMode, FanSensor.Profile>()
{
{
@ -48,6 +49,7 @@ namespace FanControl
SensorName = "Core (Tctl/Tdie)",
SensorType = SensorType.Temperature,
ValueDeadZone = 0.0f,
AvgSamples = 20,
Profiles = new Dictionary<FanMode, FanSensor.Profile>()
{
{
@ -72,6 +74,7 @@ namespace FanControl
SensorName = "GPU Core",
SensorType = SensorType.Temperature,
ValueDeadZone = 0.0f,
AvgSamples = 20,
Profiles = new Dictionary<FanMode, FanSensor.Profile>()
{
{