[🤔 ROS2?] /advanced_grasping/place#

Caution

This documentation page has been auto-generated.

It may be missing some details.

/advanced_grasping/place Quick Facts

Category

🦾 Manipulation

Message type

pal_bt_grasping_msgs/action/PlaceObject

Instructs the robot to place an object on a support (part of the Advanced Grasping pipeline).

See overview-advanced-grasping for details and tutorials.

Quick snippets#

Send a goal from the command-line#
$ ros2 action send_goal /advanced_grasping/place pal_bt_grasping_msgs/action/PlaceObject # press Tab to complete the message prototype

How to use in your code#

Call the action from a Python script#
#!/usr/bin/env python

import rclpy
from rclpy.action import ActionClient
from rclpy.node import Node

from pal_bt_grasping_msgs.action import PlaceObject

class PlaceActionClient(Node):

    def __init__(self):
        super().__init__('advanced_grasping_place_client')
        self._action_client = ActionClient(self, PlaceObject, '/advanced_grasping/place')

    def send_goal(self, a, b):
        goal_msg = PlaceObject.Goal()

        # TODO: adapt to the action's parameters
        # check the pal_bt_grasping_msgs/action/PlaceObjectGoal message
        # definition for the possible goal parameters
        # goal_msg.a = a
        # goal_msg.b = b

        self._action_client.wait_for_server()

        return self._action_client.send_goal_async(goal_msg)

if __name__ == '__main__':
    rclpy.init(args=args)

    action_client = PlaceActionClient()

    # TODO: adapt to your action's parameters
    future = action_client.send_goal(a, b)

    rclpy.spin_until_future_complete(action_client, future)

    rclpy.shutdown()