15 #ifndef ROS2_CONTROL_DEMO_EXAMPLE_3__RRBOT_SYSTEM_MULTI_INTERFACE_HPP_
16 #define ROS2_CONTROL_DEMO_EXAMPLE_3__RRBOT_SYSTEM_MULTI_INTERFACE_HPP_
24 #include "hardware_interface/handle.hpp"
25 #include "hardware_interface/hardware_info.hpp"
26 #include "hardware_interface/system_interface.hpp"
27 #include "hardware_interface/types/hardware_interface_return_values.hpp"
28 #include "rclcpp/clock.hpp"
29 #include "rclcpp/duration.hpp"
30 #include "rclcpp/logger.hpp"
31 #include "rclcpp/macros.hpp"
32 #include "rclcpp/time.hpp"
33 #include "rclcpp_lifecycle/node_interfaces/lifecycle_node_interface.hpp"
34 #include "rclcpp_lifecycle/state.hpp"
36 namespace ros2_control_demo_example_3
51 const std::vector<std::string> & start_interfaces,
52 const std::vector<std::string> & stop_interfaces)
override;
55 const rclcpp_lifecycle::State & previous_state)
override;
58 const rclcpp_lifecycle::State & previous_state)
override;
60 hardware_interface::return_type
read(
61 const rclcpp::Time & time,
const rclcpp::Duration & period)
override;
63 hardware_interface::return_type
write(
64 const rclcpp::Time & time,
const rclcpp::Duration & period)
override;
76 rclcpp::Clock::SharedPtr
get_clock()
const {
return clock_; }
85 std::shared_ptr<rclcpp::Logger> logger_;
86 rclcpp::Clock::SharedPtr clock_;
89 std::vector<double> hw_commands_positions_;
90 std::vector<double> hw_commands_velocities_;
91 std::vector<double> hw_commands_accelerations_;
92 std::vector<double> hw_states_positions_;
93 std::vector<double> hw_states_velocities_;
94 std::vector<double> hw_states_accelerations_;
98 enum integration_level_t : std::uint8_t
107 std::vector<integration_level_t> control_level_;
Definition: system_interface.hpp:73
Definition: rrbot_system_multi_interface.hpp:39
std::vector< hardware_interface::CommandInterface > export_command_interfaces() override
Exports all command interfaces for this hardware interface.
Definition: rrbot_system_multi_interface.cpp:123
hardware_interface::return_type prepare_command_mode_switch(const std::vector< std::string > &start_interfaces, const std::vector< std::string > &stop_interfaces) override
Prepare for a new command interface switch.
Definition: rrbot_system_multi_interface.cpp:140
rclcpp::Logger get_logger() const
Get the logger of the SystemInterface.
Definition: rrbot_system_multi_interface.hpp:70
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_system_multi_interface.cpp:31
rclcpp::Clock::SharedPtr get_clock() const
Get the clock of the SystemInterface.
Definition: rrbot_system_multi_interface.hpp:76
hardware_interface::return_type read(const rclcpp::Time &time, const rclcpp::Duration &period) override
Read the current state values from the actuator.
Definition: rrbot_system_multi_interface.cpp:268
std::vector< hardware_interface::StateInterface > export_state_interfaces() override
Exports all state interfaces for this hardware interface.
Definition: rrbot_system_multi_interface.cpp:106
hardware_interface::return_type write(const rclcpp::Time &time, const rclcpp::Duration &period) override
Write the current command values to the actuator.
Definition: rrbot_system_multi_interface.cpp:309
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