Air_Quality Sensor Library
Air_Quality.h
- Committer:
- ysy00700
- Date:
- 2015-08-11
- Revision:
- 0:7653022b71cb
File content as of revision 0:7653022b71cb:
/*
AirQuality library v1.0
2010 Copyright (c) Seeed Technology Inc. All right reserved.
Original Author: Bruce.Qin
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include"mbed.h"
#ifndef __AIRQUALITY_H__
#define __AIRQUALITY_H__
class AirQuality
{
public:
int i ;
long vol_standard;
int init_voltage;
int first_vol;
int last_vol;
int temp;
int counter;
bool timer_index;
bool error;
void init(PinName pin, void(*IRQ)(void));
int slope(void);
private:
PinName _pin;
void avgVoltage(void);
};
#endif