mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-04-04 22:07:40 +00:00
Add avg and similar
This commit is contained in:
parent
8e582f372e
commit
adddf9feca
5 changed files with 37 additions and 22 deletions
|
|
@ -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>()
|
||||
{
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue