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

C++ API for the GUVAS12D UV sensor module. More...

Detailed Description

UPM module for the GUVAS12D UV Sensor

// The was tested with the Grove UV Sensor module.
// It has a sensing range from between 200-400nm. It's strongest
// response is around 320-360nm.
// Instantiate a GUVAS12D on analog pin A0
upm::GUVAS12D *volts = new upm::GUVAS12D(0);
// The higher the voltage the more intense the UV radiation.
while (shouldRun)
{
cout << "AREF: " << GUVAS12D_AREF
<< ", Voltage value (higher means more UV): "
<< volts->value(GUVAS12D_AREF, SAMPLES_PER_QUERY) << endl;
sleep(1);
}

Public Member Functions

 GUVAS12D (int pin)
 
 ~GUVAS12D ()
 
float value (float aref, unsigned int samples)
 

Constructor & Destructor Documentation

GUVAS12D ( int  pin)

GUVAS12D sensor constructor

Parameters
pinanalog pin to use
~GUVAS12D ( )

GUVAS12D Destructor

Member Function Documentation

float value ( float  aref,
unsigned int  samples 
)

Get the averaged voltage value from the sensor

Parameters
arefthe reference voltage in use (5.0 or 3.3 usually)
samplesnumber of samples to average over
Returns
the averaged voltage reading

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