Move the `GoPiGo3`_ forward. For setting the motor speed, use :py:meth:`~easygopigo3.EasyGoPiGo3.set_speed`. Default ``speed`` is set to **300** - see :py:meth:`~easygopigo3.EasyGoPiGo3.__init__`.
(self)
| 291 | self.set_motor_dps(self.MOTOR_LEFT + self.MOTOR_RIGHT, 0) |
| 292 | |
| 293 | def forward(self): |
| 294 | """ |
| 295 | Move the `GoPiGo3`_ forward. |
| 296 | |
| 297 | For setting the motor speed, use :py:meth:`~easygopigo3.EasyGoPiGo3.set_speed`. |
| 298 | Default ``speed`` is set to **300** - see :py:meth:`~easygopigo3.EasyGoPiGo3.__init__`. |
| 299 | |
| 300 | """ |
| 301 | self.set_motor_dps(self.MOTOR_LEFT + self.MOTOR_RIGHT, |
| 302 | self.NO_LIMIT_SPEED) |
| 303 | |
| 304 | def drive_cm(self, dist, blocking=True): |
| 305 | """ |
no test coverage detected