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

10
app/include/Fan.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef FAN_H_
#define FAN_H_
class Fan {
public:
virtual void PWM(int value) = 0;
virtual int RPM() = 0;
};
#endif // FAN_H_