Source code for wpilib.interfaces.pidoutput

#----------------------------------------------------------------------------
# Copyright (c) FIRST 2008-2012. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
#----------------------------------------------------------------------------

__all__ = ["PIDOutput"]

[docs]class PIDOutput: """This interface allows :class:`.PIDController` to write its results to its output. """
[docs] def pidWrite(self, output): """Set the output to the value calculated by :class:`.PIDController`. :param output: the value calculated by PIDController """ raise NotImplementedError