Initial commit

This commit is contained in:
jazzpi
2022-11-17 17:58:33 +01:00
commit 307a3f8a53
7 changed files with 363 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#pragma once
#include <ros/ros.h>
namespace rh_sensing
{
class RideheightSensing
{
public:
RideheightSensing(ros::NodeHandle nh, ros::NodeHandle nh_private);
void spin();
private:
ros::NodeHandle nh;
ros::NodeHandle nh_private;
ros::Publisher vl6180x_pub;
ros::Publisher vl53l0x_pub;
};
} // namespace rh_sensing