001 /*
002 * To change this template, choose Tools | Templates
003 * and open the template in the editor.
004 */
005 package edu.wpi.first.wpilibj.interfaces;
006
007 import edu.wpi.first.wpilibj.PIDSource;
008
009 /**
010 *
011 * @author alex
012 */
013 public interface Potentiometer extends PIDSource {
014 double get();
015 }