Common
common packages for kyubic
 
Loading...
Searching...
No Matches
fix_axis_plotjuggler.hpp
Go to the documentation of this file.
1
10#ifndef _FIX_AXIS_plotjuggler_HPP
11#define _FIX_AXIS_plotjuggler_HPP
12
13#include <plotjuggler_msgs/msg/min_max.hpp>
14#include <rclcpp/rclcpp.hpp>
15
17{
18
19class FixAxisPlotjuggler : public rclcpp::Node
20{
21private:
22 rclcpp::Publisher<plotjuggler_msgs::msg::MinMax>::SharedPtr pub_;
23 rclcpp::TimerBase::SharedPtr timer_;
24
25 float min, max;
26
27 void _callback();
28
29public:
30 FixAxisPlotjuggler(const rclcpp::NodeOptions & options);
31};
32
33} // namespace tools::plotjuggler
34
35#endif
Definition: fix_axis_plotjuggler.hpp:20
Definition: fix_axis_plotjuggler.hpp:17