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

@ -12,6 +12,7 @@ using System.Threading.Tasks;
namespace FanControl
{
[TypeConverter(typeof(ExpandableObjectConverter))]
[RefreshProperties(RefreshProperties.Repaint)]
internal partial class FanController : IDisposable
{
public enum FanMode
@ -25,9 +26,13 @@ namespace FanControl
public FanMode Mode { get; private set; }
[CategoryAttribute("Fan")]
[NotifyParentProperty(true)]
public ushort CurrentRPM { get; private set; }
[CategoryAttribute("Fan")]
[NotifyParentProperty(true)]
public ushort DesiredRPM { get; private set; }
[CategoryAttribute("Board")]