3#include <pybind11/pybind11.h>
4#include <pybind11/stl.h>
6#include <controllers/IController.hpp>
8#include "parameter_container.h"
10namespace py = pybind11;
11using namespace pybind11::literals;
14void bind_controller_type(py::module_& m);
15void bind_computational_space(py::module_& m);
16void bind_cartesian_controllers(py::module_& m);
17void bind_joint_controllers(py::module_& m);
Systems to determine a command output from measured and desired inputs.