Files
arduino/src/PMS/PMS5003.h

46 lines
902 B
C
Raw Normal View History

#ifndef _AIR_GRADIENT_PMS5003_H_
#define _AIR_GRADIENT_PMS5003_H_
#include "../Main/BoardDef.h"
#include "PMS.h"
2024-02-29 14:45:44 +07:00
#include "Stream.h"
2024-02-04 15:04:38 +07:00
/**
* @brief The class define how to handle PMS5003 sensor bas on @ref PMS class
*/
class PMS5003 {
public:
PMS5003(BoardType def);
#if defined(ESP8266)
bool begin(Stream *_debugStream);
#else
bool begin(HardwareSerial &serial);
#endif
2024-02-04 15:04:38 +07:00
void end(void);
bool readData(void);
int getPm01Ae(void);
int getPm25Ae(void);
int getPm10Ae(void);
int getPm03ParticleCount(void);
int convertPm25ToUsAqi(int pm25);
private:
2024-02-04 15:04:38 +07:00
bool _isBegin = false;
BoardType _boardDef;
PMS pms;
const BoardDef *bsp;
#if defined(ESP8266)
Stream *_debugStream;
const char *TAG = "PMS5003";
#else
HardwareSerial *_serial;
#endif
// Conplug_PMS5003T *pms;
PMS::DATA pmsData;
bool begin(void);
2024-02-04 15:04:38 +07:00
bool isBegin(void);
};
#endif /** _AIR_GRADIENT_PMS5003_H_ */