ros2_control - humble
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 
33 namespace ros2_control_demo_example_8
34 {
36 {
37 public:
39  const hardware_interface::HardwareInfo & info) override;
40 
42  const rclcpp_lifecycle::State & previous_state) override;
43 
44  std::vector<hardware_interface::StateInterface> export_state_interfaces() override;
45 
46  std::vector<hardware_interface::CommandInterface> export_command_interfaces() override;
47 
49  const rclcpp_lifecycle::State & previous_state) override;
50 
52  const rclcpp_lifecycle::State & previous_state) override;
53 
54  hardware_interface::return_type read(
55  const rclcpp::Time & time, const rclcpp::Duration & period) override;
56 
57  hardware_interface::return_type write(
58  const rclcpp::Time & time, const rclcpp::Duration & period) override;
59 
60 private:
61  std::unique_ptr<rclcpp::Logger> logger_;
62  std::unique_ptr<rclcpp::Clock> clock_;
63 
64  // parameters for the RRBot simulation
65  double actuator_slowdown_;
66 
67  // transmissions
68  std::vector<std::shared_ptr<transmission_interface::Transmission>> transmissions_;
69 
70  struct InterfaceData
71  {
72  explicit InterfaceData(const std::string & name);
73 
74  std::string name_;
75  double command_;
76  double state_;
77 
78  // this is the "sink" that will be part of the transmission Joint/Actuator handles
79  double transmission_passthrough_;
80  };
81  std::vector<InterfaceData> joint_interfaces_;
82  std::vector<InterfaceData> actuator_interfaces_;
83 };
84 
85 } // namespace ros2_control_demo_example_8
86 
87 #endif // ROS2_CONTROL_DEMO_EXAMPLE_8__RRBOT_TRANSMISSIONS_SYSTEM_POSITION_ONLY_HPP_
Definition: system_interface.hpp:73
Definition: rrbot_transmissions_system_position_only.hpp:36
std::vector< hardware_interface::CommandInterface > export_command_interfaces() override
Exports all command interfaces for this hardware interface.
Definition: rrbot_transmissions_system_position_only.cpp:195
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:274
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:229
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
std::vector< hardware_interface::StateInterface > export_state_interfaces() override
Exports all state interfaces for this hardware interface.
Definition: rrbot_transmissions_system_position_only.cpp:178
rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn CallbackReturn
Virtual Class to implement when integrating a 1 DoF actuator into ros2_control.
Definition: actuator_interface.hpp:69
This structure stores information about hardware defined in a robot's URDF.
Definition: hardware_info.hpp:106