Skip to content
Snippets Groups Projects
Commit 7e356a3b authored by Valerij Wittenbeck's avatar Valerij Wittenbeck
Browse files

scenario MovePlatform - added a config file which makes the platform go to the table

parent c2850ac7
No related branches found
No related tags found
No related merge requests found
<MovePlatformStateChart>
<StateParameters>
<!--
x/y are in mm
for now z=rotation around z axis in radian
-->
<targetPositions>
<Item0>
<x>3400</x>
<y>7150</y>
<z>-1.6</z>
</Item0>
</targetPositions>
<!--unreachable-->
<!--targetPositions>
<Item0>
<x>5000</x>
<y>5000</y>
<z>0</z>
</Item0>
</targetPositions-->
<positionalAccuracy>10</positionAccuracy> <!--mm-->
<orientationalAccuracy>0.1</orientationAccuracy> <!--rad-->
<timeoutMoveTo>30000</timeoutMoveTO>
</StateParameters>
</MovePlatformStateChart>
......@@ -51,7 +51,8 @@ namespace armarx
// ****************************************************************
void StatechartMovePlatform::defineParameters()
{
setConfigFile("RobotAPI/scenarios/MovePlatformTest/configs/MovePlatformExample.xml");
// setConfigFile("RobotAPI/scenarios/MovePlatformTest/configs/MovePlatformExample.xml");
setConfigFile("RobotAPI/scenarios/MovePlatformTest/configs/MovePlatformExampleCloseToTable.xml");
addToInput("targetPositions", VariantType::List(VariantType::Vector3), false);
addToInput("positionalAccuracy", VariantType::Float, false);
addToInput("orientationalAccuracy", VariantType::Float, false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment