Encoders
Encoders detect how much a robot travelled depending on how fast the motor spins.
Creating Encoder Objects
Parameters:
2 integers (int) -> Encoder objects have 2 IDs unlike Spark objects, these 2 integer parameters refer to the 2 IDs respectively.
The Encoder IDs act the same as the Spark IDs helping differentiate the encoders from one another. Luckily, just like the Spark motors, the encoders have already been declared in the RomiDrivetrain class. Here is the code of the Encoder objects being declared.
Setting Encoder
Distances
Encoder
DistancesIf we want to make encoders return the distance they move in inches, centimeters, or even meters, we have to make sure the encoder knows how much distance it covers based on how many degrees the motor rotates. To do this, we can use the formula of the circumference of a circle with being the diameter of the circle (or in our case, the wheel) in inches. Then in the parameter divide it by the pulse per revolution. Pulses vary from manufacturer to manufacturer, but in short, encoders detect a certain amount of pulses per revolution and those pulses help encoders detect motor movement. The RomiDrivetrain class already does this for us making our distance in inches. Here is the code the template used to declare it.
Encoder
Config Stuff
Encoder
Config StuffThere are other configurations on an encoder, such as its max value and whether it is inverted or not. Here are the method syntaxes below:
Accessing Encoder
Values
Encoder
ValuesAfter configuring the encoder, you can access values from the encoder giving you data that can be used in your code.
Getting encoder distance
the most useful piece of data from an encoder is the distance traveled by the motor. This is accessed through the get getDistance() method in the encoder class. This method returns a double and has no parameters. Here is an example with both the m_leftEncoder
and m_rightEncoder
:
Their also other pieces of data that encoders can return such as the rate of the motor and if the motor has stopped or not. Here are the method syntaxes below:
Challenge: The goDistance()
Method
goDistance()
MethodNow that you know how to use an encoder, let's make a new method called goDistance
at the bottom of the RomiDrivetrain
class.
Conditions:
After you are done making a method that you think works compare it with the answer code below.
Last updated