Integrate PwmControl a bit more, add stub for PwmSensor

This commit is contained in:
2022-09-11 20:06:08 +02:00
parent b3371e02f7
commit bbdd612209
2 changed files with 6 additions and 0 deletions

View File

@@ -2,11 +2,16 @@
#define HWMONFAN_H_
#include <fan/Fan.h>
#include <fan/PwmControl.h>
class HwmonFan : public Fan {
public:
void PWM(int percent) override;
int RPM() override;
private:
PwmControl mPwmControl;
// PwmSensor mPwmSensor;
};
#endif // HWMONFAN_H_