Skip to content
Snippets Groups Projects
Commit d4174e58 authored by Mirko Wächter's avatar Mirko Wächter
Browse files
parents 129a0c7f 87be9445
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ namespace armarx
kinematicUnitObserverName = getProperty<std::string>("KinematicUnitObserverName").getValue();
usingProxy(getProperty<std::string>("KinematicUnitName").getValue());
usingProxy("RobotStateComponent");
usingProxy(kinematicUnitObserverName);
}
......
......@@ -173,7 +173,7 @@ void MoveJointsVelocityControl::onEnter()
for(int i=0; i<jointNames->getSize(); i++)
{
targetJointVelocities[jointNames->getVariant(i)->getString()] = targetVelocitiesValues->getVariant(i)->getFloat();
ARMARX_VERBOSE << "setting joint angle for joint '" << jointNames->getVariant(i)->getString() << "' to " << targetVelocitiesValues->getVariant(i)->getFloat() << std::endl;
ARMARX_VERBOSE << "setting joint velocity for joint '" << jointNames->getVariant(i)->getString() << "' to " << targetVelocitiesValues->getVariant(i)->getFloat() << std::endl;
}
// TODO: Set Max Velocities
......
......@@ -145,7 +145,7 @@ namespace MotionControl
/**
* \ingroup MotionControl
* Move the joints of a kinematic chain to the desired values using velocity control.
* Set the velocities of the joints of a kinematic chain.
* \param jointNames the names of the joints to be moved
* \param targetJointVelocities the desired joint velocities
* \param targetJointVelocityTolerance tolerance defining how precisely the joint velocity has to be reached
......
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