18 lines
632 B
Text
18 lines
632 B
Text
|
##Description: Moves robot arm to a specified joint space.
|
||
|
|
||
|
#goal definition
|
||
|
moveit_action_handlers/PropertyValuePair[] joint_pairs # list of joint_pairs (joint name + value)
|
||
|
float32 end_effector_velocity
|
||
|
float32 end_effector_acceleration
|
||
|
float32 timeout_seconds #if this action cannot be completed within this time period it should be considered failed.
|
||
|
---
|
||
|
#result definition
|
||
|
bool success
|
||
|
uint64 millis_passed
|
||
|
string status #Use the constants of ActionResultStatusConstants in the status field
|
||
|
---
|
||
|
#feedback
|
||
|
bool success
|
||
|
uint64 millis_passed
|
||
|
string status #Use the constants of ActionFeedbackStatusConstants in the status field
|