git commit -m "first commit for v2"
This commit is contained in:
15
Controllers/Packages/amr_control/test/vda_5050_api.cpp
Normal file
15
Controllers/Packages/amr_control/test/vda_5050_api.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <ros/ros.h>
|
||||
#include "amr_control/amr_vda_5050_client_api.h"
|
||||
|
||||
std::shared_ptr<amr_control::VDA5050ClientAPI> client;
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
// Initialize the ROS node
|
||||
ros::init(argc, argv, "test_imr_nova_control");
|
||||
ros::start();
|
||||
|
||||
client = std::make_shared<amr_control::VDA5050ClientAPI>();
|
||||
ros::spin();
|
||||
client.reset();
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user