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

C++ API for the GroveO2 Oxygen Gas Sensor. More...

Detailed Description

The Grove O2 sensor measures the oxygen concentration in the air

// The was tested with the O2 Oxygen Concentration Sensor Module
// Instantiate a GroveO2 on analog pin A0
upm::GroveO2 *O2 = new upm::GroveO2(0);
while (shouldRun)
{
cout << "The output voltage is: " << O2->voltageValue() << "mV" << endl;
usleep(100000);
}

Public Member Functions

 GroveO2 (int pin)
 
 ~GroveO2 ()
 
float voltageValue ()
 

Constructor & Destructor Documentation

GroveO2 ( int  pin)

GroveO2 sensor constructor

Parameters
pinanalog pin to use
~GroveO2 ( )

GroveO2 Destructor

Member Function Documentation

float voltageValue ( )

Measures O2 from the sensor

Returns
the Oxygen concentration as voltage

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