Organize the files

This commit is contained in:
2022-09-11 19:41:45 +02:00
parent 7111a20203
commit e6188b8e72
11 changed files with 14 additions and 14 deletions

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

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