roboligo
Toggle main menu visibility
Loading...
Searching...
No Matches
roboligo_common
include
roboligo_common
connector
sensors
Battery.hpp
Go to the documentation of this file.
1
// Copyright 2026 Juan S. Cely G.
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
// https://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
#ifndef ROBOLIGO_COMMON_CONNECTOR_SENSORS__BATTERY_HPP_
16
#define ROBOLIGO_COMMON_CONNECTOR_SENSORS__BATTERY_HPP_
17
18
#include <sensor_msgs/msg/battery_state.hpp>
19
20
#include "
roboligo_common/connector/Sensor.hpp
"
21
22
namespace
roboligo
23
{
31
class
Battery
:
public
Sensor
32
{
33
public
:
39
Battery
(std::string new_name, std::string new_topic)
40
:
Sensor
(new_name, new_topic){}
41
45
virtual
~Battery
() =
default
;
46
47
rclcpp::Subscription<sensor_msgs::msg::BatteryState>::SharedPtr
subscriber
;
48
49
sensor_msgs::msg::BatteryState::SharedPtr
data
;
50
55
void
callback
(sensor_msgs::msg::BatteryState::SharedPtr msg);
56
};
57
}
// namespace roboligo
58
#endif
// ROBOLIGO_COMMON_CONNECTOR_SENSORS__BATTERY_HPP_
Sensor.hpp
roboligo::Battery::callback
void callback(sensor_msgs::msg::BatteryState::SharedPtr msg)
Callback function invoked when a new battery state message is received.
Definition
Battery.cpp:20
roboligo::Battery::~Battery
virtual ~Battery()=default
Virtual destructor.
roboligo::Battery::subscriber
rclcpp::Subscription< sensor_msgs::msg::BatteryState >::SharedPtr subscriber
ROS 2 subscription to receive BatteryState messages.
Definition
Battery.hpp:47
roboligo::Battery::data
sensor_msgs::msg::BatteryState::SharedPtr data
Latest received battery state data.
Definition
Battery.hpp:49
roboligo::Battery::Battery
Battery(std::string new_name, std::string new_topic)
Constructor for Battery sensor.
Definition
Battery.hpp:39
roboligo::Sensor::Sensor
Sensor(std::string new_name, std::string new_topic)
Constructor for Sensor.
Definition
Sensor.cpp:19
roboligo
Definition
ClassificationBase.hpp:28
Generated by
1.17.0