sas
Modularised monitoring, logging, and control of robots.
Loading...
Searching...
No Matches
sas_robot_kinematics_client.hpp
1#pragma once
2/*
3# Copyright (c) 2020-2023 Murilo Marques Marinho
4#
5# This file is part of sas_robot_kinematics.
6#
7# sas_robot_kinematics 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 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_kinematics. If not, see <https://www.gnu.org/licenses/>.
19#
20# ################################################################
21#
22# Author: Murilo M. Marinho, email: murilomarinho@ieee.org
23#
24# ################################################################*/
25
26#include <atomic>
27
28#include <dqrobotics/DQ.h>
29
30#include <rclcpp/rclcpp.hpp>
31#include <geometry_msgs/msg/pose_stamped.hpp>
33#include <sas_msgs/msg/float64.hpp>
34
35using namespace rclcpp;
36using namespace DQ_robotics;
37
38namespace sas
39{
41{
42private:
43 std::shared_ptr<Node> node_;
44
45 std::atomic_bool enabled_;
46 const std::string topic_prefix_;
47
48 Subscription<geometry_msgs::msg::PoseStamped>::SharedPtr subscriber_pose_;
49 DQ pose_;
50 Subscription<geometry_msgs::msg::PoseStamped>::SharedPtr subscriber_reference_frame_;
51 DQ reference_frame_;
52
53 Publisher<geometry_msgs::msg::PoseStamped>::SharedPtr publisher_desired_pose_;
54 Publisher<sas_msgs::msg::Float64>::SharedPtr publisher_desired_interpolator_speed_;
55
56 void _callback_pose(const geometry_msgs::msg::PoseStamped& msg);
57 void _callback_reference_frame(const geometry_msgs::msg::PoseStamped& msg);
58public:
59 RobotKinematicsClient()=delete;
61
62//#ifdef IS_SAS_PYTHON_BUILD
63// RobotKinematicsInterface(const std::string& topic_prefix);
64//#endif
65 RobotKinematicsClient(const std::shared_ptr<Node> &node, const std::string& topic_prefix);
66
67 bool is_enabled() const;
68 DQ get_pose() const;
69 DQ get_reference_frame() const;
70 void send_desired_pose(const DQ& desired_pose) const;
71 void send_desired_interpolator_speed(const double& interpolator_speed) const;
72};
73}
Definition sas_object.hpp:39
Definition sas_robot_kinematics_client.hpp:41
Base object class for identification and license utilities.