> ## Documentation Index
> Fetch the complete documentation index at: https://docs.generalrobotics.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# IsaacMobileBimanual

## IsaacMobileBimanual

Inherits from: [`IsaacBimanual`](/robot-api/reference/robot/arm/isaac_bimanual/IsaacBimanual)

Isaac Sim mobile bimanual implementation backed by Zenoh.

This class extends IsaacBimanual to add locomotion capabilities, providing
an interface to control a mobile bimanual robot in Isaac Sim through Zenoh.
It combines bimanual arm control with base locomotion.

### Inherited methods

* From [`ZenohAgent`](/robot-api/reference/sim/zenoh/agent/ZenohAgent): `create_clients`, `getForce`, `getTorque`, `getImage`, `getPosition`, `getOrientation`, `sendVelocity`, `sendPose`, `publishMsg`, `getMsg`, `getJointAngles`, `setJointAngles`, `getJointVelocities`, `getJointStates`, `getObjectPose`, `setObjectPose`, `run`, `prompt`, `reset`
* From [`Robot`](/robot-api/reference/base/robot/robot/Robot): `addSensor`, `cleanup`

### **init**

```python theme={null}
IsaacMobileBimanual.__init__(config = default_isaac_config)
```

Initialize an IsaacMobileBimanual robot instance.

This initializes a mobile bimanual robot in Isaac Sim through Zenoh.
Sets up left and right arms with appropriate Zenoh topics, and adds
a locomotion base controller.

<ResponseField name="Arguments">
  <ParamField query="config (dict)" type="dict">
    Configuration dictionary containing Zenoh topics and settings. (default: default\_isaac\_config)
  </ParamField>
</ResponseField>

### moveByVelocity

```python theme={null}
IsaacMobileBimanual.moveByVelocity(linear_velocity: Velocity, angular_velocity: Velocity, frame: str = 'body', name: str = 'cmd_vel')
```

Move the robot base by specifying linear and angular velocities.

Due to the nature of Isaac Sim, the robot will move in the direction/rotation
of the velocity vectors, but exact movement may vary. Use odometry feedback
with getPosition and/or getOrientation when you need precise distance or
angle control.

<ResponseField name="Arguments">
  <ParamField query="linear_velocity (Velocity)" type="Velocity" required>
    Linear velocity components.
  </ParamField>

  <ParamField query="angular_velocity (Velocity)" type="Velocity" required>
    Angular velocity components.
  </ParamField>

  <ParamField query="frame (str)" type="str">
    Reference frame for the velocity. (default: "body")
  </ParamField>

  <ParamField query="name (str)" type="str">
    Name of velocity command. (default: "cmd\_vel")
  </ParamField>
</ResponseField>

### stop

```python theme={null}
IsaacMobileBimanual.stop(name: str = 'cmd_vel')
```

Stop the robot base.

<ResponseField name="Arguments">
  <ParamField query="name (str)" type="str">
    Name of velocity command. (default: "cmd\_vel")
  </ParamField>
</ResponseField>

### getState

```python theme={null}
IsaacMobileBimanual.getState() -> dict
```

Get the complete state of the mobile bimanual robot.

<ResponseField name="Returns">
  <ResponseField name="dict" type="dict">
    Dictionary containing base position, base orientation, left arm state, and right arm state.
  </ResponseField>
</ResponseField>
