CSharpRoboticsLib.WPIExtensions.RampMotor.PidWrite C# (CSharp) Method

PidWrite() public method

Set the output to the value calculated by the PIDController
public PidWrite ( double value ) : void
value double
return void
        public void PidWrite(double value)
        {
            Set(value);
        }