-
I want to make feedback control to my manipulator. So I found how to get joint variables (position, velocity, angular velocity) and save it. Q1: If I want to make feedback control (such as DoB), can I write the code inside the "for" statement? for statement is this. (I append code)
Q2: If I want set torque to reroute joint, how can I? The document said only "setsetExternalTorque" API. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Q1. That is correct. Currently the contacts you get before |
Beta Was this translation helpful? Give feedback.
Q1. That is correct. Currently the contacts you get before
integrateWorldThreadSafe()
is previous contacts. I'll also pushintegrate1WorldThreadSafe()
method so that you can get contacts of the current time step.Q2. Yes.
setGeneralizedForce
is the way to go.