BrickPi.Movement.Vehicule.Foreward C# (CSharp) Method

Foreward() public method

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
return void
        public void Foreward(int speed, int timeout)
        {
            Backward(-speed, timeout);
        }