forked from AndrejOrsula/pymoveit2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex_pose_goal.py
executable file
·147 lines (126 loc) · 5.39 KB
/
ex_pose_goal.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#!/usr/bin/env python3
"""
Example of moving to a pose goal.
- ros2 run pymoveit2 ex_pose_goal.py --ros-args -p position:="[0.25, 0.0, 1.0]" -p quat_xyzw:="[0.0, 0.0, 0.0, 1.0]" -p cartesian:=False
- ros2 run pymoveit2 ex_pose_goal.py --ros-args -p position:="[0.25, 0.0, 1.0]" -p quat_xyzw:="[0.0, 0.0, 0.0, 1.0]" -p cartesian:=False -p synchronous:=False -p cancel_after_secs:=1.0
- ros2 run pymoveit2 ex_pose_goal.py --ros-args -p position:="[0.25, 0.0, 1.0]" -p quat_xyzw:="[0.0, 0.0, 0.0, 1.0]" -p cartesian:=False -p synchronous:=False -p cancel_after_secs:=0.0
"""
from threading import Thread
import rclpy
from rclpy.callback_groups import ReentrantCallbackGroup
from rclpy.node import Node
from pymoveit2 import MoveIt2, MoveIt2State
from pymoveit2.robots import panda
def main():
rclpy.init()
# Create node for this example
node = Node("ex_pose_goal")
# Declare parameters for position and orientation
node.declare_parameter("position", [0.5, 0.0, 0.25])
node.declare_parameter("quat_xyzw", [1.0, 0.0, 0.0, 0.0])
node.declare_parameter("synchronous", True)
# If non-positive, don't cancel. Only used if synchronous is False
node.declare_parameter("cancel_after_secs", 0.0)
# Planner ID
node.declare_parameter("planner_id", "RRTConnectkConfigDefault")
# Declare parameters for cartesian planning
node.declare_parameter("cartesian", False)
node.declare_parameter("cartesian_max_step", 0.0025)
node.declare_parameter("cartesian_fraction_threshold", 0.0)
node.declare_parameter("cartesian_jump_threshold", 0.0)
node.declare_parameter("cartesian_avoid_collisions", False)
# Create callback group that allows execution of callbacks in parallel without restrictions
callback_group = ReentrantCallbackGroup()
# Create MoveIt 2 interface
moveit2 = MoveIt2(
node=node,
joint_names=panda.joint_names(),
base_link_name=panda.base_link_name(),
end_effector_name=panda.end_effector_name(),
group_name=panda.MOVE_GROUP_ARM,
callback_group=callback_group,
)
moveit2.planner_id = (
node.get_parameter("planner_id").get_parameter_value().string_value
)
# Spin the node in background thread(s) and wait a bit for initialization
executor = rclpy.executors.MultiThreadedExecutor(2)
executor.add_node(node)
executor_thread = Thread(target=executor.spin, daemon=True, args=())
executor_thread.start()
node.create_rate(1.0).sleep()
# Scale down velocity and acceleration of joints (percentage of maximum)
moveit2.max_velocity = 0.5
moveit2.max_acceleration = 0.5
# Get parameters
position = node.get_parameter("position").get_parameter_value().double_array_value
quat_xyzw = node.get_parameter("quat_xyzw").get_parameter_value().double_array_value
synchronous = node.get_parameter("synchronous").get_parameter_value().bool_value
cancel_after_secs = (
node.get_parameter("cancel_after_secs").get_parameter_value().double_value
)
cartesian = node.get_parameter("cartesian").get_parameter_value().bool_value
cartesian_max_step = (
node.get_parameter("cartesian_max_step").get_parameter_value().double_value
)
cartesian_fraction_threshold = (
node.get_parameter("cartesian_fraction_threshold")
.get_parameter_value()
.double_value
)
cartesian_jump_threshold = (
node.get_parameter("cartesian_jump_threshold")
.get_parameter_value()
.double_value
)
cartesian_avoid_collisions = (
node.get_parameter("cartesian_avoid_collisions")
.get_parameter_value()
.bool_value
)
# Set parameters for cartesian planning
moveit2.cartesian_avoid_collisions = cartesian_avoid_collisions
moveit2.cartesian_jump_threshold = cartesian_jump_threshold
# Move to pose
node.get_logger().info(
f"Moving to {{position: {list(position)}, quat_xyzw: {list(quat_xyzw)}}}"
)
moveit2.move_to_pose(
position=position,
quat_xyzw=quat_xyzw,
cartesian=cartesian,
cartesian_max_step=cartesian_max_step,
cartesian_fraction_threshold=cartesian_fraction_threshold,
)
if synchronous:
# Note: the same functionality can be achieved by setting
# `synchronous:=false` and `cancel_after_secs` to a negative value.
moveit2.wait_until_executed()
else:
# Wait for the request to get accepted (i.e., for execution to start)
print("Current State: " + str(moveit2.query_state()))
rate = node.create_rate(10)
while moveit2.query_state() != MoveIt2State.EXECUTING:
rate.sleep()
# Get the future
print("Current State: " + str(moveit2.query_state()))
future = moveit2.get_execution_future()
# Cancel the goal
if cancel_after_secs > 0.0:
# Sleep for the specified time
sleep_time = node.create_rate(cancel_after_secs)
sleep_time.sleep()
# Cancel the goal
print("Cancelling goal")
moveit2.cancel_execution()
# Wait until the future is done
while not future.done():
rate.sleep()
# Print the result
print("Result status: " + str(future.result().status))
print("Result error code: " + str(future.result().result.error_code))
rclpy.shutdown()
executor_thread.join()
exit(0)
if __name__ == "__main__":
main()