Skip to content
Snippets Groups Projects
Commit ba2de049 authored by bucyril's avatar bucyril
Browse files

added basic service methods for safe controller

parent b3b87304
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,25 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "ros/ros.h"
#include "d_fall_pps/Controller.h"
#include "d_fall_pps/ViconData.h"
#include "d_fall_pps/Setpoint.h"
#include "d_fall_pps/MotorCommands.h"
using namespace d_fall_pps;
bool calculateControlOutput(d_fall_pps::Controller::Request &request, d_fall_pps::Controller::Response &response) {
ROS_INFO("calculate control output");
}
int main(int argc, char* argv[]) {
ROS_INFO_STREAM("fdsafsfdsalj");
ros::init(argc, argv, "SafeControllerService");
ros::NodeHandle nodeHandle("~");
ros::ServiceServer service = nodeHandle.advertiseService("Controller", calculateControlOutput);
ROS_INFO("SafeControllerService ready");
ros::spin();
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment