#pragma once #include #include using namespace std; /** * @brief PWM controlled fan without RPM detection */ class Fan{ /** * @brief WiringPi GPIO number of pin which controls fan */ int GPIO_fan = 25; public: /** * @brief Construct a new Fan object * Create soft-PWM thread for fan control signal */ Fan(); /** * @brief Enable cooling fan */ void On(); /** * @brief Disable cooling fan */ void Off(); };