2020-01-21 14:56:02 +01:00
|
|
|
// routines for fetching data from the SDS011-sensor
|
|
|
|
|
|
|
|
// Local logging tag
|
|
|
|
static const char TAG[] = __FILE__;
|
|
|
|
|
|
|
|
#include <sds011read.h>
|
|
|
|
|
|
|
|
// UART(2) is unused in this project
|
2020-02-03 15:26:57 +01:00
|
|
|
#if (HAS_IF482)
|
|
|
|
#error cannot use IF482 together with SDS011 (both use UART#2)
|
|
|
|
#endif
|
2020-01-21 14:56:02 +01:00
|
|
|
static HardwareSerial sdsSerial(2); // so we use it here
|
|
|
|
static SDS011 sdsSensor; // fine dust sensor
|
|
|
|
|
|
|
|
// the results of the sensor:
|
|
|
|
float pm25;
|
|
|
|
float pm10;
|
2020-02-03 15:26:57 +01:00
|
|
|
boolean isSDS011Active;
|
2020-01-21 14:56:02 +01:00
|
|
|
|
|
|
|
// init
|
|
|
|
bool sds011_init()
|
|
|
|
{
|
|
|
|
pm25 = pm10 = 0.0;
|
2020-02-19 13:57:21 +01:00
|
|
|
sdsSensor.begin (&sdsSerial, ESP_PIN_RX, ESP_PIN_TX);
|
|
|
|
sds011_sleep(); // we do sleep/wakup by ourselves
|
|
|
|
return true;
|
2020-01-21 14:56:02 +01:00
|
|
|
}
|
2020-02-19 13:57:21 +01:00
|
|
|
|
2020-01-21 14:56:02 +01:00
|
|
|
// reading data:
|
|
|
|
void sds011_loop()
|
|
|
|
{
|
2020-02-03 15:26:57 +01:00
|
|
|
if ( isSDS011Active ) {
|
|
|
|
int sdsErrorCode = sdsSensor.read(&pm25, &pm10);
|
|
|
|
if (sdsErrorCode) {
|
|
|
|
pm25 = pm10 = 0.0;
|
|
|
|
ESP_LOGI(TAG, "SDS011 error: %d", sdsErrorCode);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ESP_LOGI(TAG, "fine-dust-values: %5.1f,%4.1f", pm10, pm25);
|
|
|
|
}
|
|
|
|
sds011_sleep();
|
|
|
|
}
|
2020-01-21 14:56:02 +01:00
|
|
|
return;
|
|
|
|
}
|
2020-02-03 15:26:57 +01:00
|
|
|
|
|
|
|
// putting the SDS-sensor to sleep
|
|
|
|
void sds011_sleep(void)
|
|
|
|
{
|
|
|
|
sdsSensor.sleep();
|
|
|
|
isSDS011Active = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// start the SDS-sensor
|
|
|
|
// needs 30 seconds for warming up
|
|
|
|
void sds011_wakeup()
|
|
|
|
{
|
|
|
|
if ( !isSDS011Active ) {
|
|
|
|
sdsSensor.wakeup();
|
|
|
|
isSDS011Active = true;
|
|
|
|
}
|
|
|
|
}
|