BrickPi.Movement.Motor.SetTachoCount C# (CSharp) Method

SetTachoCount() public method

Set Tachometer encoder offset Use this to reset or setup a specific position
public SetTachoCount ( Int32 position ) : void
position System.Int32 New offset, 0 to reset
return void
        public void SetTachoCount(Int32 position)
        {
            brick.BrickPi.Motor[(int)Port].EncoderOffset = position;
        }