diff options
Diffstat (limited to 'pid/fancontroller.hpp')
-rw-r--r-- | pid/fancontroller.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pid/fancontroller.hpp b/pid/fancontroller.hpp index b627915..b9b015c 100644 --- a/pid/fancontroller.hpp +++ b/pid/fancontroller.hpp @@ -18,14 +18,14 @@ class FanController : public PIDController { public: static std::unique_ptr<PIDController> CreateFanPid( - PIDZone* owner, + ZoneInterface* owner, const std::string& id, std::vector<std::string>& inputs, ec::pidinfo initial); FanController(const std::string& id, std::vector<std::string>& inputs, - PIDZone* owner) + ZoneInterface* owner) : PIDController(id, owner), _inputs(inputs), _direction(FanSpeedDirection::NEUTRAL) |