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

View File

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