ESP32-PaxCounter/src/sds011read.cpp

70 lines
1.5 KiB
C++
Raw Normal View History

2020-01-21 14:56:02 +01:00
// routines for fetching data from the SDS011-sensor
2020-02-25 22:18:20 +01:00
#if (HAS_SDS011)
2020-01-21 14:56:02 +01:00
// Local logging tag
static const char TAG[] = __FILE__;
2020-02-05 22:13:30 +01:00
#include "sds011read.h"
2020-01-21 14:56:02 +01:00
2020-02-03 15:26:57 +01:00
#if (HAS_IF482)
#error cannot use IF482 together with SDS011 (both use UART#2)
#endif
// sds011 connected to UART(2)
static SdsDustSensor sdsSensor(Serial2);
2020-01-21 14:56:02 +01:00
// the results of the sensor:
2020-02-25 22:18:20 +01:00
static float pm10, pm25;
bool isSDS011Active = false;
2020-01-21 14:56:02 +01:00
// init
2020-02-05 22:13:30 +01:00
bool sds011_init() {
pm25 = pm10 = 0.0;
sdsSensor.begin();
String version = sdsSensor.queryFirmwareVersion().toString();
ESP_LOGI(TAG, "SDS011 firmware version %s", version);
sdsSensor.setQueryReportingMode();
2020-02-25 22:18:20 +01:00
sds011_sleep(); // we do sleep/wakup by ourselves
2020-02-05 22:13:30 +01:00
return true;
2020-01-21 14:56:02 +01:00
}
2020-02-25 15:43:54 +01:00
2020-01-21 14:56:02 +01:00
// reading data:
2020-02-05 22:13:30 +01:00
void sds011_loop() {
if (isSDS011Active) {
PmResult pm = sdsSensor.queryPm();
if (!pm.isOk()) {
2020-02-05 22:13:30 +01:00
pm25 = pm10 = 0.0;
ESP_LOGE(TAG, "SDS011 query error");
2020-02-05 22:13:30 +01:00
} else {
pm25 = pm.pm25;
pm10 = pm.pm10;
2020-02-05 22:13:30 +01:00
ESP_LOGI(TAG, "fine-dust-values: %5.1f,%4.1f", pm10, pm25);
2020-02-03 15:26:57 +01:00
}
2020-02-05 22:13:30 +01:00
sds011_sleep();
}
2020-01-21 14:56:02 +01:00
}
2020-02-03 15:26:57 +01:00
2020-02-25 22:18:20 +01:00
// retrieving stored data:
void sds011_store(sdsStatus_t *sds_store) {
sds_store->pm10 = pm10;
sds_store->pm25 = pm25;
}
2020-02-03 15:26:57 +01:00
// putting the SDS-sensor to sleep
2020-02-05 22:13:30 +01:00
void sds011_sleep(void) {
WorkingStateResult state = sdsSensor.sleep();
isSDS011Active = state.isWorking();
2020-02-03 15:26:57 +01:00
}
// start the SDS-sensor
// needs 30 seconds for warming up
2020-02-05 22:13:30 +01:00
void sds011_wakeup() {
WorkingStateResult state = sdsSensor.wakeup();
isSDS011Active = state.isWorking();
2020-02-03 15:26:57 +01:00
}
2020-02-25 22:18:20 +01:00
#endif // HAS_SDS011