2022-01-31 21:28:39 +04:00
|
|
|
##Description: Moves robot arm to a specified joint space.
|
|
|
|
|
|
|
|
#goal definition
|
2022-02-10 23:15:37 +04:00
|
|
|
string robot_name
|
2023-02-03 07:04:12 +00:00
|
|
|
rbs_skill_interfaces/PropertyValuePair[] joint_pairs # list of joint_pairs (joint name + value)
|
2023-03-31 20:24:56 +00:00
|
|
|
float64[] joint_values
|
2022-02-10 23:15:37 +04:00
|
|
|
float32 joints_velocity_scaling_factor
|
|
|
|
float32 joints_acceleration_scaling_factor
|
2022-01-31 21:28:39 +04:00
|
|
|
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
|