Skip to content
Snippets Groups Projects
Commit 18fa7d69 authored by Martin Do's avatar Martin Do
Browse files

Torque values modified

parent 2b17ca4c
No related branches found
No related tags found
No related merge requests found
......@@ -393,8 +393,8 @@ void KinematicUnitWidgetController::setControlModeTorque()
if (currentNode)
{
jointModes[currentNode->getName()] = eTorqueControl;
ui.horizontalSliderKinematicUnitPos->setMaximum(90); // TODO: set useful values!
ui.horizontalSliderKinematicUnitPos->setMinimum(-90);
ui.horizontalSliderKinematicUnitPos->setMaximum(20.0); // TODO: set useful values!
ui.horizontalSliderKinematicUnitPos->setMinimum(-20.0);
ARMARX_INFO << "setting torque control for current Node Name: " << currentNode->getName() << flush;
if (kinematicUnitInterfacePrx)
......@@ -645,7 +645,7 @@ void KinematicUnitWidgetController::sliderValueChanged(int pos)
else if(currentControlMode == eTorqueControl)
{
NameValueMap jointTorques;
jointTorques[currentNode->getName()] = value;
jointTorques[currentNode->getName()] = value/10.0f;
if (kinematicUnitInterfacePrx)
{
kinematicUnitInterfacePrx->setJointTorques(jointTorques);
......
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