Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame^] | 3 | #include "controller.hpp" |
| 4 | #include "ec/pid.hpp" |
| 5 | #include "fan.hpp" |
| 6 | |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 7 | #include <memory> |
| 8 | #include <string> |
| 9 | #include <vector> |
| 10 | |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 11 | /* |
| 12 | * A FanController is a PID controller that reads a number of fans and given |
| 13 | * the output then tries to set them to the goal values set by the thermal |
| 14 | * controllers. |
| 15 | */ |
| 16 | class FanController : public PIDController |
| 17 | { |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame^] | 18 | public: |
| 19 | static std::unique_ptr<PIDController> |
| 20 | CreateFanPid(ZoneInterface* owner, const std::string& id, |
| 21 | std::vector<std::string>& inputs, ec::pidinfo initial); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 22 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame^] | 23 | FanController(const std::string& id, std::vector<std::string>& inputs, |
| 24 | ZoneInterface* owner) : |
| 25 | PIDController(id, owner), |
| 26 | _inputs(inputs), _direction(FanSpeedDirection::NEUTRAL) |
| 27 | { |
| 28 | } |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 29 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame^] | 30 | float input_proc(void) override; |
| 31 | float setpt_proc(void) override; |
| 32 | void output_proc(float value) override; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 33 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame^] | 34 | FanSpeedDirection getFanDirection(void) const |
| 35 | { |
| 36 | return _direction; |
| 37 | } |
Patrick Venture | 566a151 | 2018-06-12 14:51:07 -0700 | [diff] [blame] | 38 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame^] | 39 | void setFanDirection(FanSpeedDirection direction) |
| 40 | { |
| 41 | _direction = direction; |
| 42 | }; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 43 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame^] | 44 | private: |
| 45 | std::vector<std::string> _inputs; |
| 46 | FanSpeedDirection _direction; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 47 | }; |