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

C++ API for the Grove Voltage Divider Sensor. More...

Detailed Description

UPM module for the Grove Voltage Divider Sensor

// Instantiate a Grove Voltage Divider sensor on analog pin A0
// collect data and output measured voltage according to the setting
// of the scaling switch (3 or 10)
while (shouldRun)
{
unsigned int val = vDiv->value(100);
float gain3val = vDiv->computedValue(3, val);
float gain10val = vDiv->computedValue(10, val);
cout << "ADC value: " << val << " Gain 3: " << gain3val
<< "v Gain 10: " << gain10val << "v" << endl;
sleep(1);
}

Public Member Functions

 GroveVDiv (int pin)
 
 ~GroveVDiv ()
 
unsigned int value (unsigned int samples)
 
float computedValue (uint8_t gain, uint16_t val, int vref=GROVEVDIV_VREF, int res=GROVEVDIV_ADC_RES)
 

Constructor & Destructor Documentation

GroveVDiv ( int  pin)

Grove Voltage Divider sensor constructor

Parameters
pinanalog pin to use
~GroveVDiv ( )

Grove Voltage Divider Destructor

Member Function Documentation

unsigned int value ( unsigned int  samples)

Get the conversion value from the sensor

Parameters
samplesspecifies how many samples to average over
Returns
the averaged ADC conversion value
float computedValue ( uint8_t  gain,
uint16_t  val,
int  vref = GROVEVDIV_VREF,
int  res = GROVEVDIV_ADC_RES 
)

Compute the measured voltage

Parameters
gaingain switch, either 3 or 10 for grove
valmeasured voltage (from value())
vrefreference voltage in millivolts
resADC resolution
Returns
the measured voltage

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