diff --git a/src/viam/components/base/base.py b/src/viam/components/base/base.py index 164a94622..2189c653f 100644 --- a/src/viam/components/base/base.py +++ b/src/viam/components/base/base.py @@ -66,9 +66,9 @@ async def spin( Args: angle (float): The angle (in degrees) to spin. - Negative implies backwards. - velocity (float): The angular velocity (in degrees per second). - to spin. Negative implies backwards. + velocity (float): The angular velocity (in degrees per second) + to spin. + Given a positive angle and a positive velocity, the base will turn to the left. """ ... @@ -91,7 +91,7 @@ async def set_power( Args: linear (Vector3): The linear component. Only the Y component is used - for wheeled base. Negative implies backwards. + for wheeled base. Positive implies forwards. angular (Vector3): The angular component. Only the Z component is used for wheeled base. Positive turns left; negative turns right. """