Examples of Using Python API to Set Steering Angles

I would like to control vehicles with steering capabilities, such as Forklift_c or nova_carter, by setting the angles.
Are there any examples available?
I have tried setting the position as shown below, but it does not move as expected.

        self._robot.apply_wheel_actions(ArticulationAction(joint_positions=np.array([0, 0, np.pi/4, np.pi/4, 0, 0]),
                                                           joint_efforts=np.array([0, 0, 0, 0, 0, 0]),
                                                           joint_velocities=np.array([2, 2, 0, 0, 0, 0])))

Yes! Check out this sample: GitHub - NVIDIA-Omniverse/sample-ackermann-amr

It’s for a remote control car but has similar steering to a forklift.

If you are more interested in a differential robot; take a look at this sample:

https://docs.omniverse.nvidia.com/isaacsim/latest/ros2_tutorials/tutorial_ros2_navigation.html

Thank you.
I’ll refer to the sample you provided.
If I have any more questions, I’ll be sure to ask!

Please do, that’s what we’re here for :)

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.