ros2_control - galactic
Loading...
Searching...
No Matches
imu_sensor_broadcaster.hpp
1// Copyright 2021 PAL Robotics SL.
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/*
16 * Authors: Subhas Das, Denis Stogl, Victor Lopez
17 */
18
19#ifndef IMU_SENSOR_BROADCASTER__IMU_SENSOR_BROADCASTER_HPP_
20#define IMU_SENSOR_BROADCASTER__IMU_SENSOR_BROADCASTER_HPP_
21
22#include <memory>
23#include <string>
24#include <vector>
25
26#include "controller_interface/controller_interface.hpp"
27#include "imu_sensor_broadcaster/visibility_control.h"
28#include "rclcpp_lifecycle/node_interfaces/lifecycle_node_interface.hpp"
29#include "rclcpp_lifecycle/state.hpp"
30#include "realtime_tools/realtime_publisher.h"
31#include "semantic_components/imu_sensor.hpp"
32#include "sensor_msgs/msg/imu.hpp"
33
34namespace imu_sensor_broadcaster
35{
36using CallbackReturn = rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn;
37
39{
40public:
41 IMU_SENSOR_BROADCASTER_PUBLIC
42 controller_interface::InterfaceConfiguration command_interface_configuration() const override;
43
44 IMU_SENSOR_BROADCASTER_PUBLIC
45 controller_interface::InterfaceConfiguration state_interface_configuration() const override;
46
47 IMU_SENSOR_BROADCASTER_PUBLIC CallbackReturn on_init() override;
48
49 IMU_SENSOR_BROADCASTER_PUBLIC
50 CallbackReturn on_configure(const rclcpp_lifecycle::State & previous_state) override;
51
52 IMU_SENSOR_BROADCASTER_PUBLIC
53 CallbackReturn on_activate(const rclcpp_lifecycle::State & previous_state) override;
54
55 IMU_SENSOR_BROADCASTER_PUBLIC
56 CallbackReturn on_deactivate(const rclcpp_lifecycle::State & previous_state) override;
57
58 IMU_SENSOR_BROADCASTER_PUBLIC
59 controller_interface::return_type update(
60 const rclcpp::Time & time, const rclcpp::Duration & period) override;
61
62protected:
63 std::string sensor_name_;
64 std::string frame_id_;
65
66 std::unique_ptr<semantic_components::IMUSensor> imu_sensor_;
67
69 rclcpp::Publisher<sensor_msgs::msg::Imu>::SharedPtr sensor_state_publisher_;
70 std::unique_ptr<StatePublisher> realtime_publisher_;
71};
72
73} // namespace imu_sensor_broadcaster
74
75#endif // IMU_SENSOR_BROADCASTER__IMU_SENSOR_BROADCASTER_HPP_
Definition controller_interface.hpp:69
Definition imu_sensor_broadcaster.hpp:39
Definition realtime_publisher.hpp:54
Configuring what command/state interfaces to claim.
Definition controller_interface.hpp:63