Added basic drive functions

This commit is contained in:
Matthias Guzmits 2023-07-18 00:44:34 +02:00
parent fa4cc1a0ad
commit de112d98e4
8 changed files with 403 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#ifndef ROS_NODE_H
#define ROS_NODE_H
#include "rclcpp/rclcpp.hpp"
class CompLibNode : public rclcpp::Node
{
public:
CompLibNode();
};
#endif