Control Libraries 7.4.0
Loading...
Searching...
No Matches
controllers_bindings.hpp
1#pragma once
2
3#include <pybind11/pybind11.h>
4#include <pybind11/stl.h>
5
6#include <controllers/IController.hpp>
7
8#include "parameter_container.hpp"
9
10namespace py = pybind11;
11using namespace pybind11::literals;
12using namespace controllers;
13
14void bind_exceptions(py::module_& m);
15void bind_controller_type(py::module_& m);
16void bind_computational_space(py::module_& m);
17void bind_cartesian_controllers(py::module_& m);
18void bind_joint_controllers(py::module_& m);
Systems to determine a command output from measured and desired inputs.