diff options
Diffstat (limited to 'pid/thermalcontroller.hpp')
-rw-r--r-- | pid/thermalcontroller.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pid/thermalcontroller.hpp b/pid/thermalcontroller.hpp index dbfcfc9..32d4a7f 100644 --- a/pid/thermalcontroller.hpp +++ b/pid/thermalcontroller.hpp @@ -16,7 +16,7 @@ class ThermalController : public PIDController { public: static std::unique_ptr<PIDController> CreateThermalPid( - PIDZone* owner, + ZoneInterface* owner, const std::string& id, std::vector<std::string>& inputs, float setpoint, @@ -24,7 +24,7 @@ class ThermalController : public PIDController ThermalController(const std::string& id, std::vector<std::string>& inputs, - PIDZone* owner) + ZoneInterface* owner) : PIDController(id, owner), _inputs(inputs) { } |