5 #include <armarx/control/skills/aron/MoveJointsToNamedConfigurationParams.aron.generated.h>
6 #include <armarx/control/skills/aron/ShapeHandParams.aron.generated.h>
22 std::stringstream desc;
23 desc <<
"Move all joints to a natural idle position that also allows "
24 "safe movement and safe bus crashes."
26 <<
"The `enable*` parameters can be used to enable/disable movement for different "
27 "body parts of the robot.";
31 .description = desc.str(),
32 .rootProfileDefaults = defaultParams.toAron(),
34 .parametersType = ParamType::ToAronType(),
42 armarx::control::skills::arondto::MoveJointsToNamedConfigurationParams>(
50 armarx::control::skills::arondto::ShapeHandParams>(
58 subParams.configuration =
"Home";
60 subParams.enableHead =
62 subParams.enableLeftHand =
false;
63 subParams.enableRightHand =
false;
67 auto openHandParams = openHand.getRootProfileParameters();
68 openHandParams.shapeName =
"Open";
70 auto openHandParamsLeft = openHandParams;
73 auto openHandParamsRight = openHandParams;
74 openHandParamsLeft.hand = armarx::control::skills::arondto::Hand::Right;
76 this->
callSubskill(openHand, openHandParamsLeft.toAron());
77 this->
callSubskill(openHand, openHandParamsRight.toAron());
78 this->
callSubskill(moveToConfiguration, subParams.toAron());