#include <Controller.h>
Public Member Functions | |
virtual void | Enable ()=0 |
virtual void | Disable ()=0 |
Interface for Controllers Common interface for controllers. Controllers run control loops, the most common are PID controllers and their variants, but this includes anything that is controlling an actuator in a separate thread.
|
pure virtual |
Stops the control loop from running until explicitly re-enabled by calling enable()
Implemented in PIDController.
|
pure virtual |
Allows the control loop to run
Implemented in PIDController.