Create encoder.java
This commit is contained in:
parent
a2e53bd42f
commit
c68329989d
1 changed files with 6 additions and 0 deletions
6
encoder.java
Normal file
6
encoder.java
Normal file
|
@ -0,0 +1,6 @@
|
|||
DcMotor.setMode(DcMotor.RunMode.STOP_AND_RESET_ENCODER); // tare the encoder
|
||||
|
||||
// in opMode:
|
||||
int pos_to_go = ...; // position to go
|
||||
DcMotor.setTargetPosition(pos_to_go); // set target position, the motor will run to this pos
|
||||
DcMotor.setMode(DcMotor.RunMode.RUN_TO_POSITION); // mode run to position
|
Loading…
Reference in a new issue