@@ -55,15 +55,18 @@ def __init__(
5555 turn when you give a positive speed value or
5656 angle.
5757 gears (list):
58- List of gears linked to the motor.
58+ List of gears linked to the motor. The gear connected
59+ to the motor comes first and the gear connected to the output
60+ comes last.
5961
6062 For example: ``[12, 36]`` represents a gear train with a
61- 12-tooth and a 36-tooth gear. Use a list of lists for multiple
63+ 12-tooth gear connected to the motor and a 36-tooth gear
64+ connected to the output. Use a list of lists for multiple
6265 gear trains, such as ``[[12, 36], [20, 16, 40]]``.
6366
6467 When you specify a gear train, all motor commands and settings
6568 are automatically adjusted to account for the resulting gear
66- ratio. The motor direction remains unchanged by this.
69+ ratio. The motor direction remains unchanged by this.
6770 reset_angle (bool):
6871 Choose ``True`` to reset the rotation sensor value to the
6972 absolute marker angle (between -180 and 179).
@@ -124,12 +127,10 @@ def __init__(self, name: Optional[str] = None, timeout: int = 10000):
124127 """
125128
126129 @overload
127- def name (self , name : str ) -> None :
128- ...
130+ def name (self , name : str ) -> None : ...
129131
130132 @overload
131- def name (self ) -> str :
132- ...
133+ def name (self ) -> str : ...
133134
134135 def name (self , * args ):
135136 """name(name)
0 commit comments