upm  0.4.1
Sensor/Actuator repository for libmraa (v0.8.0)
Public Member Functions | List of all members

API for the Grove Rotary Encoder. More...

Detailed Description

UPM module for the Grove rotary encoder. This rotary encoder encodes a rotation signal into electronic pulses that can be used to measure rotation and direction. It is useful in cases where a rotary knob is required, but using a potentiometer is not desirable. A rotary encoder can turn a full 360 degrees without a stop and does not place a resistive load on the circuit, as is the case with a potentiometer.

This module maintains a position that is incremented or decremented according to the rotation on the encoder.

rotaryencoder.jpg
// Instantiate a Grove Rotary Encoder, using signal pins D2 and D3
while (true) {
System.out.println("Position: " + rotaryencoder.position());
Thread.sleep(1000);
}

Public Member Functions

synchronized void delete ()
 
 RotaryEncoder (int pinA, int pinB)
 
void initPosition (int count)
 
void initPosition ()
 
int position ()
 

Constructor & Destructor Documentation

RotaryEncoder ( int  pinA,
int  pinB 
)

RotaryEncoder constructor

Parameters
pinADigital pin to use for signal A
pinBDigital pin to use for signal B

Member Function Documentation

void initPosition ( int  count)

Resets the position to a given number; default is 0.

Parameters
countInteger to initialize the position to
int position ( )

Gets the position value


The documentation for this class was generated from the following file: