ftc2024-robotcode/encoder.java

7 lines
298 B
Java
Raw Normal View History

2024-03-16 11:33:11 +01:00
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