Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 103 |
Kevin |
1 |
package IEEERobotics.IOIOAI.VT;
|
|
|
2 |
|
|
|
3 |
import ioio.lib.api.IOIO;
|
|
|
4 |
import ioio.lib.api.exception.ConnectionLostException;
|
|
|
5 |
|
|
|
6 |
public interface InputInterface {
|
|
|
7 |
public void initialize(IOIO ioio) throws ConnectionLostException;
|
|
|
8 |
public double getValue() throws InterruptedException, ConnectionLostException;
|
|
|
9 |
public String getPinDescription();
|
|
|
10 |
public void closePins();
|
|
|
11 |
}
|