forked from M-Labs/thermostat
pid: partial -> proportional
This commit is contained in:
parent
9852b32646
commit
50a1b9f52d
|
@ -62,7 +62,7 @@ impl Controller {
|
|||
// error
|
||||
let error = input - self.target;
|
||||
|
||||
// partial
|
||||
// proportional
|
||||
let p = f64::from(self.parameters.kp) * error;
|
||||
|
||||
// integral
|
||||
|
|
Loading…
Reference in New Issue