upm  0.4.1
Sensor/Actuator repository for libmraa (v0.8.0)
Public Member Functions

API for the Grove O2 Oxygen Gas Sensor. More...

Detailed Description

The Grove O2 Oxygen Gas sensor measures the oxygen concentration in the air

groveo2.jpg
// 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)

Grove O2 Oxygen Gas sensor constructor

Parameters
pinAnalog pin to use
~GroveO2 ( )

GroveO2 destructor

Member Function Documentation

float voltageValue ( )

Measures O2 from the sensor

Returns
Oxygen concentration as voltage

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