BrickPi.Movement.Vehicule.Foreward C# (CSharp) Метод

Foreward() публичный Метод

Run forward for the specified number of milliseconds
public Foreward ( int speed, int timeout ) : void
speed int speed is between -255 and +255
timeout int >number of milliseconds to run the motors
Результат void
        public void Foreward(int speed, int timeout)
        {
            Backward(-speed, timeout);
        }