blob: 9c3ee7fac9d8e74a28dc27688ee8d661e5dfc41f [file] [log] [blame]
James Feist22c257a2018-08-31 14:07:12 -07001#pragma once
2
3#include "controller.hpp"
4#include "ec/pid.hpp"
5#include "fan.hpp"
6
7#include <memory>
8#include <vector>
9
10class ZoneInterface;
11
12/*
13 * Base class for PID controllers. Each PID that implements this needs to
Patrick Venture563a3562018-10-30 09:31:26 -070014 * provide an inputProc, setptProc, and outputProc.
James Feist22c257a2018-08-31 14:07:12 -070015 */
16class PIDController : public Controller
17{
18 public:
19 PIDController(const std::string& id, ZoneInterface* owner) :
20 Controller(), _owner(owner), _setpoint(0), _id(id)
21 {
22 }
23
24 virtual ~PIDController()
25 {
26 }
27
Patrick Venture563a3562018-10-30 09:31:26 -070028 virtual float inputProc(void) = 0;
29 virtual float setptProc(void) = 0;
30 virtual void outputProc(float value) = 0;
James Feist22c257a2018-08-31 14:07:12 -070031
32 void process(void);
33
Patrick Venture563a3562018-10-30 09:31:26 -070034 std::string getID(void)
James Feist22c257a2018-08-31 14:07:12 -070035 {
36 return _id;
37 }
Patrick Venture563a3562018-10-30 09:31:26 -070038 float getSetpoint(void)
James Feist22c257a2018-08-31 14:07:12 -070039 {
40 return _setpoint;
41 }
Patrick Venture563a3562018-10-30 09:31:26 -070042 void setSetpoint(float setpoint)
James Feist22c257a2018-08-31 14:07:12 -070043 {
44 _setpoint = setpoint;
45 }
46
Patrick Venture563a3562018-10-30 09:31:26 -070047 ec::pid_info_t* getPIDInfo(void)
James Feist22c257a2018-08-31 14:07:12 -070048 {
49 return &_pid_info;
50 }
51
52 protected:
53 ZoneInterface* _owner;
54
55 private:
56 // parameters
57 ec::pid_info_t _pid_info;
58 float _setpoint;
59 std::string _id;
60};