updated scout description, still working on scout gazebo sim control

This commit is contained in:
Ruixiang Du
2020-03-25 23:46:23 +08:00
parent 9c26ce9c34
commit 38510eb257
17 changed files with 3900 additions and 43 deletions

View File

@@ -0,0 +1,27 @@
/*
* scout_skid_steer.hpp
*
* Created on: Mar 25, 2020 22:52
* Description:
*
* Copyright (c) 2019 Ruixiang Du (rdu)
*/
#ifndef SCOUT_SKID_STEER_HPP
#define SCOUT_SKID_STEER_HPP
#include <string>
#include <ros/ros.h>
namespace wescore {
class ScoutSkidSteer {
public:
ScoutSkidSteer(std::string robot_name);
private:
std::string robot_name;
};
} // namespace wescore
#endif /* SCOUT_SKID_STEER_HPP */