001/*----------------------------------------------------------------------------*/
002/* Copyright (c) FIRST 2008-2014. 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/*----------------------------------------------------------------------------*/
007package edu.wpi.first.wpilibj.interfaces;
008
009import edu.wpi.first.wpilibj.PIDSource;
010
011/**
012 *
013 * @author alex
014 */
015public interface Potentiometer extends PIDSource {
016        double get();
017}