sas
Modularised monitoring, logging, and control of robots.
Loading...
Searching...
No Matches
sas_robot_driver_kuka.hpp
1#pragma once
2/*
3# Copyright (c) 2016-2024 Murilo Marques Marinho
4#
5# This file is part of sas_robot_driver_kuka.
6#
7# sas_robot_driver_kuka is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Lesser General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
12# sas_robot_driver_kuka is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Lesser General Public License for more details.
16#
17# You should have received a copy of the GNU Lesser General Public License
18# along with sas_robot_driver_kuka. If not, see <https://www.gnu.org/licenses/>.
19#
20# ################################################################
21#
22# Author: Murilo M. Marinho, email: murilomarinho@ieee.org
23# Based on sas_robot_driver_denso.h
24#
25# ################################################################*/
26
27#include <atomic>
28#include <thread>
29
31
32using namespace Eigen;
33
34namespace sas
35{
36//Declared internally
37class DriverBcap;
38
40{
41 std::tuple<VectorXd,VectorXd> joint_limits;
42};
43
44class RobotDriverKuka: public RobotDriver
45{
46private:
47 RobotDriverKukaConfiguration configuration_;
48 std::thread fri_thread_;
49
50 //Implementation details that depend on FRI source files.
51 class Impl;
52 std::unique_ptr<Impl> impl_;
53public:
54
55 RobotDriverKuka(const RobotDriverKuka&)=delete;
56 RobotDriverKuka()=delete;
57 ~RobotDriverKuka();
58
59 RobotDriverKuka(const RobotDriverKukaConfiguration& configuration, std::atomic_bool* break_loops);
60
61 VectorXd get_joint_positions() override;
62 void set_target_joint_positions(const VectorXd& desired_joint_positions_rad) override;
63
64 VectorXd get_joint_torques() override;
65
66 void connect() override;
67 void disconnect() override;
68
69 void initialize() override;
70 void deinitialize() override;
71
72};
73}
void set_target_joint_positions(const VectorXd &desired_joint_positions_rad) override
Set target joint positions.
VectorXd get_joint_positions() override
Get current joint positions.
VectorXd get_joint_torques() override
Get current joint torques.
void connect() override
Connect to the underlying robot/hardware.
void deinitialize() override
Deinitialize the driver resources.
void disconnect() override
Disconnect from the underlying robot/hardware.
void initialize() override
Initialize the driver resources.
Abstract RobotDriver interface and watchdog support.
Definition sas_robot_driver_kuka.hpp:40