I am following this tutorial on pathfollowing with wpilib: Step 3: Creating a Drive Subsystem — FIRST Robotics Competition documentation
In the tutorial, it appears they are using external encoders while I am using the encoders built into the NEO motor from REVrobotics. In their tutorial, they use this method:
m_leftEncoder.setDistancePerPulse(DriveConstants.kEncoderDistancePerPulse);
m_rightEncoder.setDistancePerPulse(DriveConstants.kEncoderDistancePerPulse);
What is this and is there an equivalent for NEO motors with the REV library? Thanks!!