ros2_control - rolling
Loading...
Searching...
No Matches
rrbot_transmissions_system_position_only.hpp
1// Copyright 2020 ros2_control Development Team
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#ifndef ROS2_CONTROL_DEMO_EXAMPLE_8__RRBOT_TRANSMISSIONS_SYSTEM_POSITION_ONLY_HPP_
16#define ROS2_CONTROL_DEMO_EXAMPLE_8__RRBOT_TRANSMISSIONS_SYSTEM_POSITION_ONLY_HPP_
17
18#include <map>
19#include <memory>
20#include <string>
21#include <vector>
22
23#include "hardware_interface/handle.hpp"
24#include "hardware_interface/hardware_info.hpp"
25#include "hardware_interface/system_interface.hpp"
26#include "hardware_interface/types/hardware_interface_return_values.hpp"
27#include "rclcpp/clock.hpp"
28#include "rclcpp/logger.hpp"
29#include "rclcpp/macros.hpp"
30#include "rclcpp_lifecycle/state.hpp"
31#include "transmission_interface/transmission.hpp"
32
33namespace ros2_control_demo_example_8
34{
36{
37public:
39 const hardware_interface::HardwareInfo & info) override;
40
42 const rclcpp_lifecycle::State & previous_state) override;
43
45 const rclcpp_lifecycle::State & previous_state) override;
46
48 const rclcpp_lifecycle::State & previous_state) override;
49
50 hardware_interface::return_type read(
51 const rclcpp::Time & time, const rclcpp::Duration & period) override;
52
53 hardware_interface::return_type write(
54 const rclcpp::Time & time, const rclcpp::Duration & period) override;
55
56private:
57 // parameters for the RRBot simulation
58 double actuator_slowdown_;
59
60 // transmissions
61 std::vector<std::shared_ptr<transmission_interface::Transmission>> transmissions_;
62
63 struct InterfaceData
64 {
65 explicit InterfaceData(const std::string & name);
66
67 std::string name_;
68 double command_;
69 double state_;
70
71 // this is the "sink" that will be part of the transmission Joint/Actuator handles
72 double transmission_passthrough_;
73 };
74 std::vector<InterfaceData> joint_interfaces_;
75 std::vector<InterfaceData> actuator_interfaces_;
76};
77
78} // namespace ros2_control_demo_example_8
79
80#endif // ROS2_CONTROL_DEMO_EXAMPLE_8__RRBOT_TRANSMISSIONS_SYSTEM_POSITION_ONLY_HPP_
Definition system_interface.hpp:83
Definition rrbot_transmissions_system_position_only.hpp:36
hardware_interface::return_type write(const rclcpp::Time &time, const rclcpp::Duration &period) override
Write the current command values to the actuator.
Definition rrbot_transmissions_system_position_only.cpp:261
hardware_interface::return_type read(const rclcpp::Time &time, const rclcpp::Duration &period) override
Read the current state values from the actuator.
Definition rrbot_transmissions_system_position_only.cpp:207
hardware_interface::CallbackReturn on_init(const hardware_interface::HardwareInfo &info) override
Initialization of the hardware interface from data parsed from the robot's URDF.
Definition rrbot_transmissions_system_position_only.cpp:38
rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn CallbackReturn
Virtual Class to implement when integrating a 1 DoF actuator into ros2_control.
Definition actuator_interface.hpp:77
This structure stores information about hardware defined in a robot's URDF.
Definition hardware_info.hpp:170