Add Fan stubs, rework Sensors classes

This commit is contained in:
2022-09-11 18:34:56 +02:00
parent 20cb22de01
commit 2208aa8672
6 changed files with 40 additions and 25 deletions

12
app/include/HwmonFan.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef HWMONFAN_H_
#define HWMONFAN_H_
#include <Fan.h>
class HwmonFan : public Fan {
public:
void PWM(int value) override;
int RPM() override;
};
#endif // HWMONFAN_H_