001/*----------------------------------------------------------------------------*/ 002/* Copyright (c) FIRST 2015-2017. All Rights Reserved. */ 003/* Open Source Software - may be modified and shared by FRC teams. The code */ 004/* must be accompanied by the FIRST BSD license file in the root directory of */ 005/* the project. */ 006/*----------------------------------------------------------------------------*/ 007 008package edu.wpi.first.wpilibj; 009 010/** 011 * A description for the type of output value to provide to a PIDController. 012 */ 013public enum PIDSourceType { 014 kDisplacement(0), 015 kRate(1); 016 017 /** 018 * The integer value representing this enumeration. 019 */ 020 @SuppressWarnings("MemberName") 021 public final int value; 022 023 PIDSourceType(int value) { 024 this.value = value; 025 } 026}