15 #ifndef ROS2_CONTROL_DEMO_EXAMPLE_2__DIFFBOT_SYSTEM_HPP_
16 #define ROS2_CONTROL_DEMO_EXAMPLE_2__DIFFBOT_SYSTEM_HPP_
22 #include "hardware_interface/handle.hpp"
23 #include "hardware_interface/hardware_info.hpp"
24 #include "hardware_interface/system_interface.hpp"
25 #include "hardware_interface/types/hardware_interface_return_values.hpp"
26 #include "rclcpp/clock.hpp"
27 #include "rclcpp/duration.hpp"
28 #include "rclcpp/logger.hpp"
29 #include "rclcpp/macros.hpp"
30 #include "rclcpp/time.hpp"
31 #include "rclcpp_lifecycle/node_interfaces/lifecycle_node_interface.hpp"
32 #include "rclcpp_lifecycle/state.hpp"
34 namespace ros2_control_demo_example_2
49 const rclcpp_lifecycle::State & previous_state)
override;
52 const rclcpp_lifecycle::State & previous_state)
override;
54 hardware_interface::return_type
read(
55 const rclcpp::Time & time,
const rclcpp::Duration & period)
override;
57 hardware_interface::return_type
write(
58 const rclcpp::Time & time,
const rclcpp::Duration & period)
override;
70 rclcpp::Clock::SharedPtr
get_clock()
const {
return clock_; }
78 std::shared_ptr<rclcpp::Logger> logger_;
79 rclcpp::Clock::SharedPtr clock_;
82 std::vector<double> hw_commands_;
83 std::vector<double> hw_positions_;
84 std::vector<double> hw_velocities_;
Definition: system_interface.hpp:73
Definition: diffbot_system.hpp:37
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: diffbot_system.cpp:32
std::vector< hardware_interface::CommandInterface > export_command_interfaces() override
Exports all command interfaces for this hardware interface.
Definition: diffbot_system.cpp:119
hardware_interface::return_type read(const rclcpp::Time &time, const rclcpp::Duration &period) override
Read the current state values from the actuator.
Definition: diffbot_system.cpp:178
std::vector< hardware_interface::StateInterface > export_state_interfaces() override
Exports all state interfaces for this hardware interface.
Definition: diffbot_system.cpp:105
hardware_interface::return_type write(const rclcpp::Time &time, const rclcpp::Duration &period) override
Write the current command values to the actuator.
Definition: diffbot_system.cpp:203
rclcpp::Logger get_logger() const
Get the logger of the SystemInterface.
Definition: diffbot_system.hpp:64
rclcpp::Clock::SharedPtr get_clock() const
Get the clock of the SystemInterface.
Definition: diffbot_system.hpp:70
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