Skip to content
Permalink
c4ffaa45cb
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (11 sloc) 312 Bytes
#include <ros/ros.h>
#include "vesc_ackermann/ackermann_to_vesc.h"
int main(int argc, char** argv)
{
ros::init(argc, argv, "ackermann_to_vesc_node");
ros::NodeHandle nh;
ros::NodeHandle private_nh("~");
vesc_ackermann::AckermannToVesc ackermann_to_vesc(nh, private_nh);
ros::spin();
return 0;
}