Package edu.wpi.first.wpilibj
Class AnalogEncoder
java.lang.Object
edu.wpi.first.wpilibj.AnalogEncoder
- All Implemented Interfaces:
Sendable,AutoCloseable
public class AnalogEncoder extends Object implements Sendable, AutoCloseable
Class for supporting continuous analog encoders, such as the US Digital MA3.
-
Field Summary
Fields Modifier and Type Field Description protected SimDevicem_simDeviceprotected SimDoublem_simPosition -
Constructor Summary
Constructors Constructor Description AnalogEncoder(int channel)Construct a new AnalogEncoder attached to a specific AnalogIn channel.AnalogEncoder(AnalogInput analogInput)Construct a new AnalogEncoder attached to a specific AnalogInput. -
Method Summary
Modifier and Type Method Description voidclose()doubleget()Get the encoder value since the last reset.intgetChannel()Get the channel number.doublegetDistance()Get the distance the sensor has driven since the last reset as scaled by the value fromsetDistancePerRotation(double).doublegetDistancePerRotation()Get the distance per rotation for this encoder.doublegetPositionOffset()Get the offset of position relative to the last reset.voidinitSendable(SendableBuilder builder)Initializes thisSendableobject.voidreset()Reset the Encoder distance to zero.voidsetDistancePerRotation(double distancePerRotation)Set the distance per rotation of the encoder.
-
Field Details
-
Constructor Details
-
AnalogEncoder
Construct a new AnalogEncoder attached to a specific AnalogIn channel.- Parameters:
channel- the analog input channel to attach to
-
AnalogEncoder
Construct a new AnalogEncoder attached to a specific AnalogInput.- Parameters:
analogInput- the analog input to attach to
-
-
Method Details
-
get
Get the encoder value since the last reset.This is reported in rotations since the last reset.
- Returns:
- the encoder value in rotations
-
getPositionOffset
Get the offset of position relative to the last reset.getPositionInRotation() - getPositionOffset() will give an encoder absolute position relative to the last reset. This could potentially be negative, which needs to be accounted for.
- Returns:
- the position offset
-
setDistancePerRotation
Set the distance per rotation of the encoder. This sets the multiplier used to determine the distance driven based on the rotation value from the encoder. Set this value based on the how far the mechanism travels in 1 rotation of the encoder, and factor in gearing reductions following the encoder shaft. This distance can be in any units you like, linear or angular.- Parameters:
distancePerRotation- the distance per rotation of the encoder
-
getDistancePerRotation
Get the distance per rotation for this encoder.- Returns:
- The scale factor that will be used to convert rotation to useful units.
-
getDistance
Get the distance the sensor has driven since the last reset as scaled by the value fromsetDistancePerRotation(double).- Returns:
- The distance driven since the last reset
-
getChannel
Get the channel number.- Returns:
- The channel number.
-
reset
Reset the Encoder distance to zero. -
close
- Specified by:
closein interfaceAutoCloseable
-
initSendable
Description copied from interface:SendableInitializes thisSendableobject.- Specified by:
initSendablein interfaceSendable- Parameters:
builder- sendable builder
-