日常更新

This commit is contained in:
jack
2026-04-02 18:32:43 +08:00
parent 111eb22824
commit bc1e86d4ea
32 changed files with 2745 additions and 2742 deletions

View File

@@ -1,15 +1,15 @@
namespace ChromeboxFanControl;
public sealed class FanSampleEventArgs : EventArgs
{
public DateTime Time { get; init; }
public double? TempC { get; init; }
/// <summary>Desired fan duty from curve or fail-safe; null when paused or not applicable.</summary>
public byte? TargetDutyPercent { get; init; }
/// <summary>Actual duty read from ectool when FanDutyArgs configured; else null.</summary>
public int? ActualDutyPercent { get; init; }
public int? Rpm { get; init; }
public string? LastEctoolMessage { get; init; }
public bool Paused { get; init; }
public bool FailSafe { get; init; }
}
namespace ChromeboxFanControl;
public sealed class FanSampleEventArgs : EventArgs
{
public DateTime Time { get; init; }
public double? TempC { get; init; }
/// <summary>Desired fan duty from curve or fail-safe; null when paused or not applicable.</summary>
public byte? TargetDutyPercent { get; init; }
/// <summary>Actual duty read from ectool when FanDutyArgs configured; else null.</summary>
public int? ActualDutyPercent { get; init; }
public int? Rpm { get; init; }
public string? LastEctoolMessage { get; init; }
public bool Paused { get; init; }
public bool FailSafe { get; init; }
}