mirror of
https://github.com/airgradienthq/arduino.git
synced 2025-07-30 08:57:17 +02:00
Remove slr correction for pms5003t
This commit is contained in:
@ -205,10 +205,6 @@ float PMS5003T::getRelativeHumidity(void) {
|
|||||||
return pms.getHum() / 10.0f;
|
return pms.getHum() / 10.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
float PMS5003T::slrCorrection(float pm25, float pm003Count, float scalingFactor, float intercept) {
|
|
||||||
return pms.slrCorrection(pm25, pm003Count, scalingFactor, intercept);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Correct PM2.5
|
* @brief Correct PM2.5
|
||||||
*
|
*
|
||||||
|
@ -45,7 +45,6 @@ public:
|
|||||||
int convertPm25ToUsAqi(int pm25);
|
int convertPm25ToUsAqi(int pm25);
|
||||||
float getTemperature(void);
|
float getTemperature(void);
|
||||||
float getRelativeHumidity(void);
|
float getRelativeHumidity(void);
|
||||||
float slrCorrection(float pm25, float pm003Count, float scalingFactor, float intercept);
|
|
||||||
float compensate(float pm25, float humidity);
|
float compensate(float pm25, float humidity);
|
||||||
int getFirmwareVersion(void);
|
int getFirmwareVersion(void);
|
||||||
uint8_t getErrorCode(void);
|
uint8_t getErrorCode(void);
|
||||||
|
Reference in New Issue
Block a user