/get_task_configuration
#
Caution
This documentation page has been auto-generated.
It may be missing some details.
/get_task_configuration
Quick Facts
- Category
- Message type
pal_task_msgs/ListParamConfigurations
Quick snippets#
$ rosservice call /get_task_configuration pal_task_msgs/ListParamConfigurations
# (tip: press Tab to complete the message prototype)
How to use in your code#
1#!/usr/bin/env python
2
3import rospy
4from pal_task_msgs.srv import *
5
6if __name__ == "__main__":
7
8 rospy.wait_for_service("/get_task_configuration")
9
10 try:
11 proxy = rospy.ServiceProxy("/get_task_configuration", ListParamConfigurations)
12 response = proxy(args...) # check the pal_task_msgs/ListParamConfigurations message type for the expected arguments
13 rospy.loginfo(response)
14
15 except rospy.ServiceException as e:
16 rospy.logerror("Service call failed: %s" % e)
1#include "ros/ros.h"
2#include <pal_task_msgs/ListParamConfigurations.h>
3#include <iostream>
4
5using namespace ros;
6
7int main(int argc, char **argv)
8{
9 ros::init(argc, argv, "get_task_configuration_client");
10
11 NodeHandle n;
12 ServiceClient client = n.serviceClient<pal_task_msgs::ListParamConfigurations>("/get_task_configuration");
13 pal_task_msgs::ListParamConfigurations srv;
14
15 // TODO: adapt to the service parameters
16 // srv.request.a = ...;
17 // srv.request.b = ...;
18
19 if (client.call(srv))
20 {
21 // TODO: do something with the result
22 // srv.response....;
23 }
24 else
25 {
26 ROS_ERROR("Failed to call service /get_task_configuration");
27 return 1;
28 }
29
30 return 0;
31}
You can also access this service from a webpage displayed on the robot’s touchscreen via this endpoint:
http://<robot>-0c/service/get_task_config
(replace <robot>-0c
by the serial number of your own robot).
See REST interface for the general documentation of the REST endpoints and code samples.