upm  0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
Public Member Functions

C++ API for the ENC03R Single Axis Analog Gyro. More...

Detailed Description

UPM module for the ENC03R Single Axis Analog Gyro. This gyroscope measures the x-axis angular velocity; that is, how fast the sensor is rotating around the x-axis. Calibration of the sensor is necessary for accurate readings.

// Instantiate a ENC03R on analog pin A0
upm::ENC03R *gyro = new upm::ENC03R(0);
// The first thing we need to do is calibrate the sensor.
cout << "Please place the sensor in a stable location, and do not" << endl;
cout << "move it while calibration takes place." << endl;
cout << "This may take a couple of minutes." << endl;
gyro->calibrate(CALIBRATION_SAMPLES);
cout << "Calibration complete. Reference value: "
<< gyro->calibrationValue() << endl;
// Read the input and print both the raw value and the angular velocity,
// waiting 0.1 seconds between readings
while (shouldRun)
{
unsigned int val = gyro->value();
double av = gyro->angularVelocity(val);
cout << "Raw value: " << val << ", "
<< "angular velocity: " << av << " deg/s" << endl;
usleep(100000);
}

Public Member Functions

 ENC03R (int pin, float vref=5.0)
 
 ~ENC03R ()
 
void calibrate (unsigned int samples)
 
unsigned int value ()
 
float calibrationValue ()
 
double angularVelocity (unsigned int val)
 

Constructor & Destructor Documentation

ENC03R ( int  pin,
float  vref = 5.0 
)

ENC03R sensor constructor

Parameters
pinanalog pin to use
vrefthe voltage reference to use, default 5.0
~ENC03R ( )

ENC03R Destructor

Member Function Documentation

void calibrate ( unsigned int  samples)

Calibrate the sensor by determining an analog reading over many samples with no movement of the sensor. This must be done before attempting to use the sensor.

Parameters
samplesthe number of samples to use for calibration
unsigned int value ( )

Return the raw value of the sensor

Returns
raw value of sensor
float calibrationValue ( )
inline

Return the currently stored calibration value

Returns
current calibration value
double angularVelocity ( unsigned int  val)

Compute angular velocity based on value and stored calibration reference.

Parameters
valthe value to use to compute the angular velocity
Returns
computed angular velocity

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