upm  0.1.8
Sensor/Actuator repository for libmraa (v0.4.5)
 All Data Structures Files Functions Variables Macros Pages
Public Member Functions
MQ5 Class Reference

C++ API for MQ5 gas sensor. More...

Detailed Description

The Grove - Gas Sensor (MQ5) module is useful for gas leakage detecting (in home and industry). It can detect LPG, natural gas, town gas and so on. It is highly sensitive and has a detection concentration of 300-10000ppm.

int
main(int argc, char **argv)
{
sensor = new upm::MQ5(0);
signal(SIGINT, sig_handler);
ctx.averageReading = 0;
ctx.runningAverage = 0;
ctx.averagedOver = 2;
while (!is_running) {
int len = sensor->getSampledWindow (2, 128, buffer);
if (len) {
int thresh = sensor->findThreshold (&ctx, 30, buffer, len);
sensor->printGraph(&ctx, 7);
if (thresh) {
// do something ....
}
}
}
std::cout << "exiting application" << std::endl;
delete sensor;
return 0;
}
grovegas.jpeg

Public Member Functions

 MQ5 (int gasPin)
 
 ~MQ5 ()
 
std::string name ()
 
- Public Member Functions inherited from Gas
 Gas (int gasPin)
 
 ~Gas ()
 
virtual int getSampledWindow (unsigned int freqMS, unsigned int numberOfSamples, uint16_t *buffer)
 
virtual int findThreshold (thresholdContext *ctx, unsigned int threshold, uint16_t *buffer, unsigned int len)
 
virtual int getSampledData (thresholdContext *ctx)
 
virtual int getSample (thresholdContext *ctx)
 
virtual void printGraph (thresholdContext *ctx, uint8_t resolution)
 

Additional Inherited Members

- Protected Attributes inherited from Gas
mraa_aio_context m_gasCtx
 

Constructor & Destructor Documentation

MQ5 ( int  gasPin)

MQ5 constructor

Parameters
gasPinanalog pin where sensor connected
~MQ5 ( )

MQ9 destructor

Member Function Documentation

std::string name ( )
inline

Return name of the component

Inheritance diagram for MQ5:
Inheritance graph
[legend]
Collaboration diagram for MQ5:
Collaboration graph
[legend]

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