Add support for zero-fan mode, fix sensor identifiers

This commit is contained in:
2023-07-24 13:55:53 +02:00
parent ad12f7a981
commit ff72f8d2ea
6 changed files with 53 additions and 58 deletions

View File

@@ -17,6 +17,9 @@ public:
virtual void StartPWM(int value) = 0;
virtual int StartPWM() = 0;
virtual void ZeroFanModeSupported(bool value) = 0;
virtual bool ZeroFanModeSupported() = 0;
virtual void FindPWMLimits() = 0;
virtual void AdjustPWMLimits() = 0;
};