19 #ifndef ROS2_CONTROL_DEMO_EXAMPLE_14__RRBOT_ACTUATOR_WITHOUT_FEEDBACK_HPP_
20 #define ROS2_CONTROL_DEMO_EXAMPLE_14__RRBOT_ACTUATOR_WITHOUT_FEEDBACK_HPP_
22 #include <netinet/in.h>
27 #include "hardware_interface/actuator_interface.hpp"
28 #include "hardware_interface/handle.hpp"
29 #include "hardware_interface/hardware_info.hpp"
30 #include "hardware_interface/system_interface.hpp"
31 #include "hardware_interface/types/hardware_interface_return_values.hpp"
32 #include "rclcpp/macros.hpp"
34 namespace ros2_control_demo_example_14
49 const rclcpp_lifecycle::State & previous_state)
override;
52 const rclcpp_lifecycle::State & previous_state)
override;
55 const rclcpp_lifecycle::State & previous_state)
override;
57 hardware_interface::return_type
read(
58 const rclcpp::Time & time,
const rclcpp::Duration & period)
override;
60 hardware_interface::return_type
write(
61 const rclcpp::Time & time,
const rclcpp::Duration & period)
override;
69 double hw_joint_command_;
72 struct sockaddr_in address_;
Definition: actuator_interface.hpp:79
Definition: rrbot_actuator_without_feedback.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: rrbot_actuator_without_feedback.cpp:39
hardware_interface::return_type write(const rclcpp::Time &time, const rclcpp::Duration &period) override
Write the current command values to the actuator.
Definition: rrbot_actuator_without_feedback.cpp:210
std::vector< hardware_interface::StateInterface > export_state_interfaces() override
Exports all state interfaces for this hardware interface.
Definition: rrbot_actuator_without_feedback.cpp:145
std::vector< hardware_interface::CommandInterface > export_command_interfaces() override
Exports all command interfaces for this hardware interface.
Definition: rrbot_actuator_without_feedback.cpp:152
hardware_interface::return_type read(const rclcpp::Time &time, const rclcpp::Duration &period) override
Read the current state values from the actuator.
Definition: rrbot_actuator_without_feedback.cpp:204
rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn CallbackReturn
Virtual Class to implement when integrating a 1 DoF actuator into ros2_control.
Definition: actuator_interface.hpp:76
This structure stores information about hardware defined in a robot's URDF.
Definition: hardware_info.hpp:170