15 #ifndef ROS2_CONTROL_DEMO_EXAMPLE_11__CARLIKEBOT_SYSTEM_HPP_
16 #define ROS2_CONTROL_DEMO_EXAMPLE_11__CARLIKEBOT_SYSTEM_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_11
47 explicit Joint(
const std::string & name) : joint_name(name)
55 std::string joint_name;
72 const rclcpp_lifecycle::State & previous_state)
override;
75 const rclcpp_lifecycle::State & previous_state)
override;
77 hardware_interface::return_type
read(
78 const rclcpp::Time & time,
const rclcpp::Duration & period)
override;
80 hardware_interface::return_type
write(
81 const rclcpp::Time & time,
const rclcpp::Duration & period)
override;
93 rclcpp::Clock::SharedPtr
get_clock()
const {
return clock_; }
101 std::shared_ptr<rclcpp::Logger> logger_;
102 rclcpp::Clock::SharedPtr clock_;
106 std::map<std::string, Joint> hw_interfaces_;
Definition: system_interface.hpp:73
Definition: carlikebot_system.hpp:60
hardware_interface::return_type write(const rclcpp::Time &time, const rclcpp::Duration &period) override
Write the current command values to the actuator.
Definition: carlikebot_system.cpp:295
std::vector< hardware_interface::CommandInterface > export_command_interfaces() override
Exports all command interfaces for this hardware interface.
Definition: carlikebot_system.cpp:183
rclcpp::Logger get_logger() const
Get the logger of the SystemInterface.
Definition: carlikebot_system.hpp:87
hardware_interface::return_type read(const rclcpp::Time &time, const rclcpp::Duration &period) override
Read the current state values from the actuator.
Definition: carlikebot_system.cpp:263
std::vector< hardware_interface::StateInterface > export_state_interfaces() override
Exports all state interfaces for this hardware interface.
Definition: carlikebot_system.cpp:156
rclcpp::Clock::SharedPtr get_clock() const
Get the clock of the SystemInterface.
Definition: carlikebot_system.hpp:93
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: carlikebot_system.cpp:31
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
Definition: carlikebot_system.hpp:39
Definition: carlikebot_system.hpp:46