OSDN Git Service

lejos_NXJ_win32_0_5_0beta.zip
[nxt-jsp/lejos_nxj.git] / nxtOSEK / lejos_nxj / src / java / classes / lejos / nxt / Tachometer.java
1 package lejos.nxt;
2
3 /**
4  * Abstraction for the tachometer built into NXT motors.
5  * 
6  * @author Lawrie Griffiths
7  *
8  */
9 public interface Tachometer {
10         
11         public int getTachoCount();
12         
13         public void resetTachoCount();
14
15 }