Files
airgradient/src/AgValue.cpp
T

1108 lines
36 KiB
C++
Raw Normal View History

2024-04-07 16:39:01 +07:00
#include "AgValue.h"
#include "AgConfigure.h"
#include "AirGradient.h"
2024-04-11 09:29:29 +07:00
#include "Libraries/Arduino_JSON/src/Arduino_JSON.h"
2024-04-07 16:39:01 +07:00
2024-08-15 08:04:30 +07:00
#define json_prop_pmFirmware "firmware"
void Measurements::maxUpdate(AgValueType type, int max) {
switch (type) {
case AgValueType::Temperature:
2024-10-13 23:30:03 +07:00
_temperature[0].update.max = max;
_temperature[1].update.max = max;
break;
case AgValueType::Humidity:
2024-10-13 23:30:03 +07:00
_humidity[0].update.max = max;
_humidity[1].update.max = max;
break;
case AgValueType::CO2:
_co2.update.max = max;
break;
case AgValueType::TVOC:
_tvoc.update.max = max;
break;
case AgValueType::TVOCRaw:
_tvoc_raw.update.max = max;
break;
case AgValueType::NOx:
_nox.update.max = max;
break;
case AgValueType::NOxRaw:
_nox_raw.update.max = max;
break;
case AgValueType::PM25:
2024-10-13 23:30:03 +07:00
_pm_25[0].update.max = max;
_pm_25[1].update.max = max;
break;
case AgValueType::PM01:
2024-10-13 23:30:03 +07:00
_pm_01[0].update.max = max;
_pm_01[1].update.max = max;
break;
case AgValueType::PM10:
2024-10-13 23:30:03 +07:00
_pm_10[0].update.max = max;
_pm_10[1].update.max = max;
break;
case AgValueType::PM03_PC:
2024-10-13 23:30:03 +07:00
_pm_03_pc[0].update.max = max;
_pm_03_pc[1].update.max = max;
break;
};
}
2024-10-13 23:30:03 +07:00
bool Measurements::updateValue(AgValueType type, int val, int ch) {
2024-10-14 01:25:35 +07:00
// Sanity check to validate channel, assert if invalid
validateChannel(ch);
2024-10-13 23:30:03 +07:00
// Follow array indexing just for get address of the value type
ch = ch - 1;
// Define data point source
IntegerValue *temporary = nullptr;
float invalidValue = 0;
switch (type) {
case AgValueType::CO2:
temporary = &_co2;
invalidValue = utils::getInvalidCO2();
break;
case AgValueType::TVOC:
temporary = &_tvoc;
invalidValue = utils::getInvalidVOC();
break;
case AgValueType::TVOCRaw:
temporary = &_tvoc_raw;
invalidValue = utils::getInvalidVOC();
break;
case AgValueType::NOx:
temporary = &_nox;
invalidValue = utils::getInvalidNOx();
break;
case AgValueType::NOxRaw:
temporary = &_nox_raw;
invalidValue = utils::getInvalidNOx();
break;
case AgValueType::PM25:
2024-10-13 23:30:03 +07:00
temporary = &_pm_25[ch];
invalidValue = utils::getInvalidPmValue();
break;
case AgValueType::PM01:
2024-10-13 23:30:03 +07:00
temporary = &_pm_01[ch];
invalidValue = utils::getInvalidPmValue();
break;
case AgValueType::PM10:
2024-10-13 23:30:03 +07:00
temporary = &_pm_10[ch];
invalidValue = utils::getInvalidPmValue();
break;
case AgValueType::PM03_PC:
2024-10-13 23:30:03 +07:00
temporary = &_pm_03_pc[ch];
invalidValue = utils::getInvalidPmValue();
break;
default:
break;
};
// Sanity check if agvaluetype is defined for integer data type or not
if (temporary == nullptr) {
Serial.printf("%s is not defined for integer data type\n", agValueTypeStr(type));
// TODO: Just assert?
2024-10-13 23:30:03 +07:00
return false;
}
2024-10-13 23:30:03 +07:00
// Restore channel value for debugging purpose
ch = ch + 1;
// Update new value when value provided is not the invalid one
if (val != invalidValue) {
temporary->lastValue = val;
temporary->sumValues = temporary->sumValues + val;
temporary->update.success = temporary->update.success + 1;
}
// Increment update.counter
temporary->update.counter = temporary->update.counter + 1;
// Calculate value average when maximum set is reached
if (temporary->update.counter >= temporary->update.max) {
2024-10-13 23:30:03 +07:00
// TODO: Need to check if SUCCESS == 0, what should we do?
// Calculate the average
temporary->avg = temporary->sumValues / temporary->update.success;
2024-10-13 23:30:03 +07:00
Serial.printf("%s{%d} count reached! Average value %d\n", agValueTypeStr(type), ch,
temporary->avg);
2024-10-13 23:30:03 +07:00
// Notify if there's are invalid value when updating
int miss = temporary->update.max - temporary->update.success;
if (miss != 0) {
2024-10-13 23:30:03 +07:00
Serial.printf("%s{%d} has %d invalid value out of %d update\n", agValueTypeStr(type), ch,
miss, temporary->update.max);
}
// Resets average related variable calculation
temporary->sumValues = 0;
temporary->update.counter = 0;
temporary->update.success = 0;
return true;
}
return false;
}
2024-10-13 23:30:03 +07:00
bool Measurements::updateValue(AgValueType type, float val, int ch) {
2024-10-14 01:25:35 +07:00
// Sanity check to validate channel, assert if invalid
validateChannel(ch);
2024-10-13 23:30:03 +07:00
// Follow array indexing just for get address of the value type
ch = ch - 1;
// Define data point source
FloatValue *temporary = nullptr;
float invalidValue = 0;
switch (type) {
case AgValueType::Temperature:
2024-10-13 23:30:03 +07:00
temporary = &_temperature[ch];
invalidValue = utils::getInvalidTemperature();
break;
case AgValueType::Humidity:
2024-10-13 23:30:03 +07:00
temporary = &_humidity[ch];
invalidValue = utils::getInvalidHumidity();
break;
default:
break;
}
// Sanity check if agvaluetype is defined for float data type or not
if (temporary == nullptr) {
Serial.printf("%s is not defined for float data type\n", agValueTypeStr(type));
// TODO: Just assert?
2024-10-13 23:30:03 +07:00
return false;
}
2024-10-13 23:30:03 +07:00
// Restore channel value for debugging purpose
ch = ch + 1;
// Update new value when value provided is not the invalid one
if (val != invalidValue) {
temporary->lastValue = val;
temporary->sumValues = temporary->sumValues + val;
temporary->update.success = temporary->update.success + 1;
}
// Increment update.counter
temporary->update.counter = temporary->update.counter + 1;
// Calculate value average when maximum set is reached
if (temporary->update.counter >= temporary->update.max) {
2024-10-13 23:30:03 +07:00
// TODO: Need to check if SUCCESS == 0
// Calculate the average
temporary->avg = temporary->sumValues / temporary->update.success;
2024-10-14 02:05:30 +07:00
Serial.printf("%s{%d} count reached! Average value %0.2f\n", agValueTypeStr(type), ch,
2024-10-13 23:30:03 +07:00
temporary->avg);
// This is just for notifying
int miss = temporary->update.max - temporary->update.success;
if (miss != 0) {
2024-10-13 23:30:03 +07:00
Serial.printf("%s{%d} has %d invalid value out of %d update\n", agValueTypeStr(type), ch,
miss, temporary->update.max);
}
// Resets average related variable calculation
temporary->sumValues = 0;
temporary->update.counter = 0;
temporary->update.success = 0;
return true;
}
return false;
}
2024-10-14 01:22:44 +07:00
int Measurements::getValue(AgValueType type, bool average, int ch) {
2024-10-14 01:25:35 +07:00
// Sanity check to validate channel, assert if invalid
validateChannel(ch);
2024-10-14 01:22:44 +07:00
// Follow array indexing just for get address of the value type
ch = ch - 1;
// Define data point source
IntegerValue *temporary = nullptr;
float invalidValue = 0;
switch (type) {
case AgValueType::CO2:
temporary = &_co2;
break;
case AgValueType::TVOC:
temporary = &_tvoc;
break;
case AgValueType::TVOCRaw:
temporary = &_tvoc_raw;
break;
case AgValueType::NOx:
temporary = &_nox;
break;
case AgValueType::NOxRaw:
temporary = &_nox_raw;
break;
case AgValueType::PM25:
temporary = &_pm_25[ch];
break;
case AgValueType::PM01:
temporary = &_pm_01[ch];
break;
case AgValueType::PM10:
temporary = &_pm_10[ch];
break;
case AgValueType::PM03_PC:
temporary = &_pm_03_pc[ch];
break;
default:
break;
};
// Sanity check if agvaluetype is defined for integer data type or not
if (temporary == nullptr) {
Serial.printf("%s is not defined for integer data type\n", agValueTypeStr(type));
// TODO: Just assert?
return false;
}
if (average) {
return temporary->avg;
}
return temporary->lastValue;
}
float Measurements::getValueFloat(AgValueType type, bool average, int ch) {
2024-10-14 01:25:35 +07:00
// Sanity check to validate channel, assert if invalid
validateChannel(ch);
2024-10-14 01:22:44 +07:00
// Define data point source
FloatValue *temporary = nullptr;
switch (type) {
case AgValueType::Temperature:
temporary = &_temperature[ch];
break;
case AgValueType::Humidity:
temporary = &_humidity[ch];
break;
default:
break;
}
// Sanity check if agvaluetype is defined for float data type or not
if (temporary == nullptr) {
Serial.printf("%s is not defined for float data type\n", agValueTypeStr(type));
// TODO: Just assert?
return false;
}
if (average) {
return temporary->avg;
}
return temporary->lastValue;
}
2024-10-14 02:14:10 +07:00
String Measurements::toString(bool localServer, AgFirmwareMode fwMode, int rssi, void *_ag,
void *_config) {
2024-04-07 16:39:01 +07:00
AirGradient *ag = (AirGradient *)_ag;
Configuration *config = (Configuration *)_config;
JSONVar root;
root["wifi"] = rssi;
if (localServer) {
root["serialno"] = ag->deviceId();
}
2024-07-24 09:05:57 +07:00
if (config->hasSensorS8 && utils::isValidCO2(this->CO2)) {
root["rco2"] = this->CO2;
2024-04-07 16:39:01 +07:00
}
2024-06-25 16:43:50 +07:00
if (ag->isOne() || (ag->isPro4_2()) || ag->isPro3_3() || ag->isBasic()) {
2024-06-18 19:59:29 +07:00
if (config->hasSensorPMS1) {
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm01_1)) {
2024-04-07 16:39:01 +07:00
root["pm01"] = this->pm01_1;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm25_1)) {
2024-04-07 16:39:01 +07:00
root["pm02"] = this->pm25_1;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm10_1)) {
2024-04-07 16:39:01 +07:00
root["pm10"] = this->pm10_1;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm03Count(this->pm03PCount_1)) {
root["pm003Count"] = this->pm03PCount_1;
2024-04-07 16:39:01 +07:00
}
if (!localServer) {
2024-08-15 08:04:30 +07:00
root[json_prop_pmFirmware] =
this->pms5003FirmwareVersion(ag->pms5003.getFirmwareVersion());
}
2024-04-07 16:39:01 +07:00
}
if (config->hasSensorSHT) {
2024-07-24 09:05:57 +07:00
if (utils::isValidTemperature(this->Temperature)) {
2024-04-07 16:39:01 +07:00
root["atmp"] = ag->round2(this->Temperature);
if (localServer) {
root["atmpCompensated"] = ag->round2(this->Temperature);
}
2024-04-07 16:39:01 +07:00
}
2024-07-24 09:05:57 +07:00
if (utils::isValidHumidity(this->Humidity)) {
2024-04-07 16:39:01 +07:00
root["rhum"] = this->Humidity;
if (localServer) {
root["rhumCompensated"] = this->Humidity;
}
2024-04-07 16:39:01 +07:00
}
}
2024-07-21 07:13:34 +07:00
if (config->hasSensorSHT && config->hasSensorPMS1) {
2024-08-26 11:56:01 +07:00
int pm25 = ag->pms5003.compensate(this->pm25_1, this->Humidity);
2024-07-21 07:13:34 +07:00
if (pm25 >= 0) {
root["pm02Compensated"] = pm25;
}
}
2024-04-07 16:39:01 +07:00
} else {
if (config->hasSensorPMS1 && config->hasSensorPMS2) {
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm01_1) && utils::isValidPm(this->pm01_2)) {
2024-07-24 09:05:57 +07:00
root["pm01"] = ag->round2((this->pm01_1 + this->pm01_2) / 2.0f);
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm25_1) && utils::isValidPm(this->pm25_2)) {
2024-07-24 09:05:57 +07:00
root["pm02"] = ag->round2((this->pm25_1 + this->pm25_2) / 2.0f);
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm10_1) && utils::isValidPm(this->pm10_2)) {
2024-07-24 09:05:57 +07:00
root["pm10"] = ag->round2((this->pm10_1 + this->pm10_2) / 2.0f);
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm03PCount_1) && utils::isValidPm(this->pm03PCount_2)) {
2024-07-24 09:05:57 +07:00
root["pm003Count"] = ag->round2((this->pm03PCount_1 + this->pm03PCount_2) / 2.0f);
}
float val;
if (utils::isValidTemperature(this->temp_1) && utils::isValidTemperature(this->temp_1)) {
root["atmp"] = ag->round2((this->temp_1 + this->temp_2) / 2.0f);
if (localServer) {
val = ag->pms5003t_2.compensateTemp((this->temp_1 + this->temp_2) / 2.0f);
2024-07-24 09:05:57 +07:00
if (utils::isValidTemperature(val)) {
root["atmpCompensated"] = ag->round2(val);
}
}
}
if (utils::isValidHumidity(this->hum_1) && utils::isValidHumidity(this->hum_1)) {
root["rhum"] = ag->round2((this->hum_1 + this->hum_2) / 2.0f);
if (localServer) {
val = ag->pms5003t_2.compensateHum((this->hum_1 + this->hum_2) / 2.0f);
2024-07-24 09:05:57 +07:00
if (utils::isValidHumidity(val)) {
root["rhumCompensated"] = (int)val;
}
}
}
2024-07-21 07:13:34 +07:00
int pm25 = (ag->pms5003t_1.compensate(this->pm25_1, this->hum_1) +
ag->pms5003t_2.compensate(this->pm25_2, this->hum_2)) /
2024-07-21 07:13:34 +07:00
2;
root["pm02Compensated"] = pm25;
2024-04-07 16:39:01 +07:00
}
2024-04-13 20:50:11 +07:00
if (fwMode == FW_MODE_O_1PS || fwMode == FW_MODE_O_1PST) {
2024-07-24 09:05:57 +07:00
float val;
2024-04-07 16:39:01 +07:00
if (config->hasSensorPMS1) {
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm01_1)) {
2024-07-24 09:05:57 +07:00
root["pm01"] = this->pm01_1;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm25_1)) {
2024-07-24 09:05:57 +07:00
root["pm02"] = this->pm25_1;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm10_1)) {
2024-07-24 09:05:57 +07:00
root["pm10"] = this->pm10_1;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm03Count(this->pm03PCount_1)) {
2024-07-24 09:05:57 +07:00
root["pm003Count"] = this->pm03PCount_1;
}
if (utils::isValidTemperature(this->temp_1)) {
root["atmp"] = ag->round2(this->temp_1);
if (localServer) {
val = ag->pms5003t_1.compensateTemp(this->temp_1);
2024-07-24 09:05:57 +07:00
if (utils::isValidTemperature(val)) {
root["atmpCompensated"] = ag->round2(val);
}
}
}
if (utils::isValidHumidity(this->hum_1)) {
root["rhum"] = this->hum_1;
if (localServer) {
val = ag->pms5003t_1.compensateHum(this->hum_1);
2024-07-24 09:05:57 +07:00
if (utils::isValidHumidity(val)) {
root["rhumCompensated"] = (int)val;
}
}
}
root["pm02Compensated"] = ag->pms5003t_1.compensate(this->pm25_1, this->hum_1);
2024-07-29 13:20:07 +07:00
if (!localServer) {
2024-08-15 08:04:30 +07:00
root[json_prop_pmFirmware] =
pms5003TFirmwareVersion(ag->pms5003t_1.getFirmwareVersion());
2024-07-29 13:20:07 +07:00
}
2024-04-07 16:39:01 +07:00
}
if (config->hasSensorPMS2) {
2024-08-30 19:07:31 +07:00
if(utils::isValidPm(this->pm01_2)) {
2024-07-24 09:05:57 +07:00
root["pm01"] = this->pm01_2;
}
2024-08-30 19:07:31 +07:00
if(utils::isValidPm(this->pm25_2)) {
2024-07-24 09:05:57 +07:00
root["pm02"] = this->pm25_2;
}
2024-08-30 19:07:31 +07:00
if(utils::isValidPm(this->pm10_2)) {
2024-07-24 09:05:57 +07:00
root["pm10"] = this->pm10_2;
}
2024-08-30 19:07:31 +07:00
if(utils::isValidPm03Count(this->pm03PCount_2)) {
2024-07-24 09:05:57 +07:00
root["pm003Count"] = this->pm03PCount_2;
}
float val;
if (utils::isValidTemperature(this->temp_2)) {
root["atmp"] = ag->round2(this->temp_2);
if (localServer) {
val = ag->pms5003t_2.compensateTemp(this->temp_2);
2024-07-24 09:05:57 +07:00
if (utils::isValidTemperature(val)) {
root["atmpCompensated"] = ag->round2(val);
}
}
}
if(utils::isValidHumidity(this->hum_2)) {
root["rhum"] = this->hum_2;
if (localServer) {
val = ag->pms5003t_2.compensateHum(this->hum_2);
2024-07-24 09:05:57 +07:00
if (utils::isValidHumidity(val)) {
root["rhumCompensated"] = (int)val;
}
}
}
root["pm02Compensated"] = ag->pms5003t_2.compensate(this->pm25_2, this->hum_2);
2024-07-29 13:20:07 +07:00
if(!localServer) {
2024-08-15 08:04:30 +07:00
root[json_prop_pmFirmware] =
pms5003TFirmwareVersion(ag->pms5003t_1.getFirmwareVersion());
2024-07-29 13:20:07 +07:00
}
2024-04-07 16:39:01 +07:00
}
} else {
2024-04-13 21:07:20 +07:00
if (fwMode == FW_MODE_O_1P) {
2024-07-24 09:05:57 +07:00
float val;
2024-04-13 21:07:20 +07:00
if (config->hasSensorPMS1) {
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm01_1)) {
2024-07-24 09:05:57 +07:00
root["pm01"] = this->pm01_1;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm25_1)) {
2024-07-24 09:05:57 +07:00
root["pm02"] = this->pm25_1;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm10_1)) {
2024-07-24 09:05:57 +07:00
root["pm10"] = this->pm10_1;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm03Count(this->pm03PCount_1)) {
2024-07-24 09:05:57 +07:00
root["pm003Count"] = this->pm03PCount_1;
}
if (utils::isValidTemperature(this->temp_1)) {
root["atmp"] = ag->round2(this->temp_1);
if (localServer) {
val = ag->pms5003t_1.compensateTemp(this->temp_1);
2024-07-24 09:05:57 +07:00
if (utils::isValidTemperature(val)) {
root["atmpCompensated"] = ag->round2(val);
}
}
}
if (utils::isValidHumidity(this->hum_1)) {
root["rhum"] = this->hum_1;
if(localServer) {
val = ag->pms5003t_1.compensateHum(this->hum_1);
2024-07-24 09:05:57 +07:00
if(utils::isValidHumidity(val)) {
root["rhumCompensated"] = (int)val;
}
}
}
root["pm02Compensated"] = ag->pms5003t_1.compensate(this->pm25_1, this->hum_1);
2024-07-29 13:20:07 +07:00
if(!localServer) {
2024-08-15 08:04:30 +07:00
root[json_prop_pmFirmware] =
pms5003TFirmwareVersion(ag->pms5003t_1.getFirmwareVersion());
2024-07-29 13:20:07 +07:00
}
2024-04-13 21:07:20 +07:00
} else if (config->hasSensorPMS2) {
2024-08-30 19:07:31 +07:00
if(utils::isValidPm(this->pm01_2)) {
2024-07-24 09:05:57 +07:00
root["pm01"] = this->pm01_2;
}
2024-08-30 19:07:31 +07:00
if(utils::isValidPm(this->pm25_2)) {
2024-07-24 09:05:57 +07:00
root["pm02"] = this->pm25_2;
}
2024-08-30 19:07:31 +07:00
if(utils::isValidPm(this->pm10_2)) {
2024-07-24 09:05:57 +07:00
root["pm10"] = this->pm10_2;
}
2024-08-30 19:07:31 +07:00
if(utils::isValidPm03Count(this->pm03PCount_2)) {
2024-07-24 09:05:57 +07:00
root["pm003Count"] = this->pm03PCount_2;
}
if (utils::isValidTemperature(this->temp_2)) {
root["atmp"] = ag->round2(this->temp_2);
if (localServer) {
val = ag->pms5003t_1.compensateTemp(this->temp_2);
2024-07-24 09:05:57 +07:00
if (utils::isValidTemperature(val)) {
root["atmpCompensated"] = ag->round2(val);
}
}
}
if (utils::isValidHumidity(this->hum_2)) {
root["rhum"] = this->hum_2;
if(localServer) {
val = ag->pms5003t_1.compensateHum(this->hum_2);
2024-07-24 09:05:57 +07:00
if(utils::isValidHumidity(val)) {
root["rhumCompensated"] = (int)val;
}
}
}
root["pm02Compensated"] = ag->pms5003t_1.compensate(this->pm25_1, this->hum_1);
2024-07-29 13:20:07 +07:00
if(!localServer) {
2024-08-15 08:04:30 +07:00
root[json_prop_pmFirmware] =
pms5003TFirmwareVersion(ag->pms5003t_2.getFirmwareVersion());
2024-07-29 13:20:07 +07:00
}
2024-04-07 16:39:01 +07:00
}
2024-04-13 21:07:20 +07:00
} else {
2024-07-24 09:05:57 +07:00
float val;
2024-04-13 21:07:20 +07:00
if (config->hasSensorPMS1) {
2024-08-30 19:07:31 +07:00
if(utils::isValidPm(this->pm01_1)) {
2024-07-24 09:05:57 +07:00
root["channels"]["1"]["pm01"] = this->pm01_1;
}
2024-08-30 19:07:31 +07:00
if(utils::isValidPm(this->pm25_1)) {
2024-07-24 09:05:57 +07:00
root["channels"]["1"]["pm02"] = this->pm25_1;
}
2024-08-30 19:07:31 +07:00
if(utils::isValidPm(this->pm10_1)) {
2024-07-24 09:05:57 +07:00
root["channels"]["1"]["pm10"] = this->pm10_1;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm03Count(this->pm03PCount_1)) {
2024-07-24 09:05:57 +07:00
root["channels"]["1"]["pm003Count"] = this->pm03PCount_1;
}
if(utils::isValidTemperature(this->temp_1)) {
root["channels"]["1"]["atmp"] = ag->round2(this->temp_1);
if (localServer) {
val = ag->pms5003t_1.compensateTemp(this->temp_1);
2024-07-24 09:05:57 +07:00
if (utils::isValidTemperature(val)) {
root["channels"]["1"]["atmpCompensated"] = ag->round2(val);
}
}
}
if (utils::isValidHumidity(this->hum_1)) {
root["channels"]["1"]["rhum"] = this->hum_1;
if (localServer) {
val = ag->pms5003t_1.compensateHum(this->hum_1);
2024-07-24 09:05:57 +07:00
if (utils::isValidHumidity(val)) {
root["channels"]["1"]["rhumCompensated"] = (int)val;
}
}
}
root["channels"]["1"]["pm02Compensated"] = ag->pms5003t_1.compensate(this->pm25_1, this->hum_1);
2024-07-29 13:20:07 +07:00
// PMS5003T version
if(!localServer) {
2024-08-15 08:04:30 +07:00
root["channels"]["1"][json_prop_pmFirmware] =
pms5003TFirmwareVersion(ag->pms5003t_1.getFirmwareVersion());
2024-07-29 13:20:07 +07:00
}
}
if (config->hasSensorPMS2) {
2024-07-24 09:05:57 +07:00
float val;
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm01_2)) {
2024-07-24 09:05:57 +07:00
root["channels"]["2"]["pm01"] = this->pm01_2;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm25_2)) {
2024-07-24 09:05:57 +07:00
root["channels"]["2"]["pm02"] = this->pm25_2;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm(this->pm10_2)) {
2024-07-24 09:05:57 +07:00
root["channels"]["2"]["pm10"] = this->pm10_2;
}
2024-08-30 19:07:31 +07:00
if (utils::isValidPm03Count(this->pm03PCount_2)) {
2024-07-24 09:05:57 +07:00
root["channels"]["2"]["pm003Count"] = this->pm03PCount_2;
}
if (utils::isValidTemperature(this->temp_2)) {
root["channels"]["2"]["atmp"] = ag->round2(this->temp_2);
if (localServer) {
val = ag->pms5003t_1.compensateTemp(this->temp_2);
2024-07-24 09:05:57 +07:00
if (utils::isValidTemperature(val)) {
root["channels"]["2"]["atmpCompensated"] = ag->round2(val);
}
}
}
if (utils::isValidHumidity(this->hum_2)) {
root["channels"]["2"]["rhum"] = this->hum_2;
if (localServer) {
val = ag->pms5003t_1.compensateHum(this->hum_2);
2024-07-24 09:05:57 +07:00
if (utils::isValidHumidity(val)) {
root["channels"]["2"]["rhumCompensated"] = (int)val;
}
}
}
root["channels"]["2"]["pm02Compensated"] = ag->pms5003t_2.compensate(this->pm25_2, this->hum_2);
2024-07-29 13:20:07 +07:00
// PMS5003T version
if(!localServer) {
2024-08-15 08:04:30 +07:00
root["channels"]["2"][json_prop_pmFirmware] =
pms5003TFirmwareVersion(ag->pms5003t_2.getFirmwareVersion());
2024-07-29 13:20:07 +07:00
}
2024-04-07 16:39:01 +07:00
}
}
}
}
if (config->hasSensorSGP) {
2024-07-24 09:05:57 +07:00
if (utils::isValidVOC(this->TVOC)) {
root["tvocIndex"] = this->TVOC;
2024-04-07 16:39:01 +07:00
}
2024-07-24 09:05:57 +07:00
if (utils::isValidVOC(this->TVOCRaw)) {
root["tvocRaw"] = this->TVOCRaw;
2024-04-07 16:39:01 +07:00
}
2024-07-24 09:05:57 +07:00
if (utils::isValidNOx(this->NOx)) {
root["noxIndex"] = this->NOx;
2024-04-07 16:39:01 +07:00
}
2024-07-24 09:05:57 +07:00
if (utils::isValidNOx(this->NOxRaw)) {
root["noxRaw"] = this->NOxRaw;
2024-04-07 16:39:01 +07:00
}
}
2024-05-18 21:19:40 -05:00
root["boot"] = bootCount;
2024-06-04 22:17:20 +07:00
root["bootCount"] = bootCount;
2024-04-07 16:39:01 +07:00
if (localServer) {
2024-06-24 18:34:24 +07:00
if (ag->isOne()) {
root["ledMode"] = config->getLedBarModeName();
}
root["firmware"] = ag->getVersion();
root["model"] = AgFirmwareModeName(fwMode);
2024-04-07 16:39:01 +07:00
}
return JSON.stringify(root);
}
2024-10-11 22:11:26 +07:00
String Measurements::pms5003FirmwareVersion(int fwCode) {
return pms5003FirmwareVersionBase("PMS5003x", fwCode);
}
String Measurements::pms5003TFirmwareVersion(int fwCode) {
return pms5003FirmwareVersionBase("PMS5003x", fwCode);
}
String Measurements::pms5003FirmwareVersionBase(String prefix, int fwCode) {
return prefix + String("-") + String(fwCode);
}
String Measurements::agValueTypeStr(AgValueType type) {
String str;
switch (type) {
case AgValueType::Temperature:
str = "Temperature";
break;
case AgValueType::Humidity:
str = "Humidity";
break;
case AgValueType::CO2:
str = "CO2";
break;
case AgValueType::TVOC:
str = "TVOC";
break;
case AgValueType::TVOCRaw:
str = "TVOCRaw";
break;
case AgValueType::NOx:
str = "NOx";
break;
case AgValueType::NOxRaw:
str = "NOxRaw";
break;
case AgValueType::PM25:
str = "PM25";
break;
case AgValueType::PM01:
str = "PM01";
break;
case AgValueType::PM10:
str = "PM10";
break;
case AgValueType::PM03_PC:
2024-10-11 22:11:26 +07:00
str = "PM03";
break;
default:
break;
};
return str;
2024-10-14 01:54:55 +07:00
}
void Measurements::validateChannel(int ch) {
if (ch != 1 && ch != 2) {
Serial.printf("ERROR! Channel %d is undefined. Only channel 1 or 2 is the optional value!", ch);
delay(1000);
assert(0);
}
2024-10-17 00:53:49 +07:00
}
String Measurements::toStringX(bool localServer, AgFirmwareMode fwMode, int rssi, AirGradient &ag,
Configuration &config) {
JSONVar root;
if (ag.isOne() || (ag.isPro4_2()) || ag.isPro3_3() || ag.isBasic()) {
root = buildIndoor(localServer, ag, config);
} else {
root = buildOutdoor(localServer, fwMode, ag, config);
}
// CO2
if (config.hasSensorS8 && utils::isValidCO2(_co2.avg)) {
root["rco2"] = _co2.avg;
}
/// TVOx and NOx
if (config.hasSensorSGP) {
if (utils::isValidVOC(_tvoc.avg)) {
root["tvocIndex"] = _tvoc.avg;
}
if (utils::isValidVOC(_tvoc_raw.avg)) {
root["tvocRaw"] = _tvoc_raw.avg;
}
if (utils::isValidNOx(_nox.avg)) {
root["noxIndex"] = _nox.avg;
}
if (utils::isValidNOx(_nox_raw.avg)) {
root["noxRaw"] = _nox_raw.avg;
}
}
root["boot"] = bootCount;
root["bootCount"] = bootCount;
root["wifi"] = rssi;
if (localServer) {
if (ag.isOne()) {
root["ledMode"] = config.getLedBarModeName();
}
root["serialno"] = ag.deviceId();
root["firmware"] = ag.getVersion();
root["model"] = AgFirmwareModeName(fwMode);
}
String result = JSON.stringify(root);
Serial.printf("\n----\n %s \n-----\n", result.c_str());
return result;
}
JSONVar Measurements::buildOutdoor(bool localServer, AgFirmwareMode fwMode, AirGradient &ag,
Configuration &config) {
JSONVar outdoor;
if (fwMode == FW_MODE_O_1P || fwMode == FW_MODE_O_1PS || fwMode == FW_MODE_O_1PST) {
// buildPMS params:
/// Because only have 1 PMS, allCh is set to false
/// But enable temp hum from PMS
/// compensated values if requested by local server
/// Set ch based on hasSensorPMSx
if (config.hasSensorPMS1) {
outdoor = buildPMS(ag, 1, false, true, localServer);
if (!localServer) {
outdoor[json_prop_pmFirmware] = pms5003TFirmwareVersion(ag.pms5003t_1.getFirmwareVersion());
}
} else {
outdoor = buildPMS(ag, 2, false, true, localServer);
if (!localServer) {
outdoor[json_prop_pmFirmware] = pms5003TFirmwareVersion(ag.pms5003t_2.getFirmwareVersion());
}
}
} else {
// FW_MODE_O_1PPT && FW_MODE_O_1PP: Outdoor monitor that have 2 PMS sensor
// buildPMS params:
/// Have 2 PMS sensor, allCh is set to true (ch params ignored)
/// Enable temp hum from PMS
/// compensated values if requested by local server
outdoor = buildPMS(ag, 1, true, true, localServer);
// PMS5003T version
if (!localServer) {
outdoor["channels"]["1"][json_prop_pmFirmware] =
pms5003TFirmwareVersion(ag.pms5003t_1.getFirmwareVersion());
outdoor["channels"]["2"][json_prop_pmFirmware] =
pms5003TFirmwareVersion(ag.pms5003t_2.getFirmwareVersion());
}
}
return outdoor;
}
JSONVar Measurements::buildIndoor(bool localServer, AirGradient &ag, Configuration &config) {
JSONVar indoor;
if (config.hasSensorPMS1) {
// buildPMS params:
/// PMS channel 1 (indoor only have 1 PMS; hence allCh false)
/// Not include temperature and humidity from PMS sensor
/// Not include compensated calculation
indoor = buildPMS(ag, 1, false, false, false);
if (!localServer) {
// Indoor is using PMS5003
indoor[json_prop_pmFirmware] = this->pms5003FirmwareVersion(ag.pms5003.getFirmwareVersion());
}
}
if (config.hasSensorSHT) {
// Add temperature
if (utils::isValidTemperature(_temperature[0].avg)) {
indoor["atmp"] = ag.round2(_temperature[0].avg);
if (localServer) {
indoor["atmpCompensated"] = ag.round2(_temperature[0].avg);
}
}
// Add humidity
if (utils::isValidHumidity(_humidity[0].avg)) {
indoor["rhum"] = ag.round2(_humidity[0].avg);
2024-10-17 00:53:49 +07:00
if (localServer) {
indoor["rhumCompensated"] = ag.round2(_humidity[0].avg);
}
}
}
// Add pm25 compensated value only if PM2.5 and humidity value is valid
if (config.hasSensorPMS1 && utils::isValidPm(_pm_25[0].avg)) {
if (config.hasSensorSHT && utils::isValidHumidity(_humidity[0].avg)) {
int pm25 = ag.pms5003.compensate(_pm_25[0].avg, _humidity[0].avg);
if (utils::isValidPm(pm25)) {
indoor["pm02Compensated"] = pm25;
}
}
}
return indoor;
}
JSONVar Measurements::buildPMS(AirGradient &ag, int ch, bool allCh, bool withTempHum,
bool compensate) {
JSONVar pms;
// When only one of the channel
if (allCh == false) {
// Sanity check to validate channel, assert if invalid
validateChannel(ch);
// Follow array indexing just for get address of the value type
ch = ch - 1;
if (utils::isValidPm(_pm_01[ch].avg)) {
pms["pm01"] = _pm_01[ch].avg;
}
if (utils::isValidPm(_pm_25[ch].avg)) {
pms["pm02"] = _pm_25[ch].avg;
}
if (utils::isValidPm(_pm_10[ch].avg)) {
pms["pm10"] = _pm_10[ch].avg;
}
if (utils::isValidPm03Count(_pm_03_pc[ch].avg)) {
pms["pm003Count"] = _pm_03_pc[ch].avg;
}
if (withTempHum) {
float _vc;
// Set temperature if valid
if (utils::isValidTemperature(_temperature[ch].avg)) {
pms["atmp"] = ag.round2(_temperature[ch].avg);
// Compensate temperature when flag is set
if (compensate) {
_vc = ag.pms5003t_1.compensateTemp(_temperature[ch].avg);
if (utils::isValidTemperature(_vc)) {
pms["atmpCompensated"] = ag.round2(_vc);
}
}
}
// Set humidity if valid
if (utils::isValidHumidity(_humidity[ch].avg)) {
pms["rhum"] = ag.round2(_humidity[ch].avg);
// Compensate relative humidity when flag is set
if (compensate) {
_vc = ag.pms5003t_1.compensateHum(_humidity[ch].avg);
if (utils::isValidTemperature(_vc)) {
pms["rhumCompensated"] = ag.round2(_vc);
}
}
}
// Add pm25 compensated value only if PM2.5 and humidity value is valid
if (compensate) {
if (utils::isValidPm(_pm_25[ch].avg) && utils::isValidHumidity(_humidity[ch].avg)) {
// Note: the pms5003t object is not matter either for channel 1 or 2, compensate points to
// the same base function
int pm25 = ag.pms5003t_1.compensate(_pm_25[ch].avg, _humidity[ch].avg);
if (utils::isValidPm(pm25)) {
pms["pm02Compensated"] = pm25;
}
}
}
}
// Directly return the json object
return pms;
};
// Handle both channel with average, if one of the channel not valid, use another one
/// PM01
if (utils::isValidPm(_pm_01[0].avg) && utils::isValidPm(_pm_01[1].avg)) {
float avg = (_pm_01[0].avg + _pm_01[1].avg) / 2;
pms["pm01"] = ag.round2(avg);
pms["channels"]["1"]["pm01"] = _pm_01[0].avg;
pms["channels"]["2"]["pm01"] = _pm_01[1].avg;
} else if (utils::isValidPm(_pm_01[0].avg)) {
pms["pm01"] = _pm_01[0].avg;
pms["channels"]["1"]["pm01"] = _pm_01[0].avg;
} else if (utils::isValidPm(_pm_01[1].avg)) {
pms["pm01"] = _pm_01[1].avg;
pms["channels"]["2"]["pm01"] = _pm_01[1].avg;
}
/// PM2.5
if (utils::isValidPm(_pm_25[0].avg) && utils::isValidPm(_pm_25[1].avg)) {
float avg = (_pm_25[0].avg + _pm_25[1].avg) / 2.0f;
pms["pm02"] = ag.round2(avg);
pms["channels"]["1"]["pm02"] = _pm_25[0].avg;
pms["channels"]["2"]["pm02"] = _pm_25[1].avg;
} else if (utils::isValidPm(_pm_25[0].avg)) {
pms["pm02"] = _pm_25[0].avg;
pms["channels"]["1"]["pm02"] = _pm_25[0].avg;
} else if (utils::isValidPm(_pm_25[1].avg)) {
pms["pm02"] = _pm_25[1].avg;
pms["channels"]["2"]["pm02"] = _pm_25[1].avg;
}
/// PM10
if (utils::isValidPm(_pm_10[0].avg) && utils::isValidPm(_pm_10[1].avg)) {
float avg = (_pm_10[0].avg + _pm_10[1].avg) / 2.0f;
pms["pm10"] = ag.round2(avg);
pms["channels"]["1"]["pm10"] = _pm_10[0].avg;
pms["channels"]["2"]["pm10"] = _pm_10[1].avg;
} else if (utils::isValidPm(_pm_10[0].avg)) {
pms["pm10"] = _pm_10[0].avg;
pms["channels"]["1"]["pm10"] = _pm_10[0].avg;
} else if (utils::isValidPm(_pm_10[1].avg)) {
pms["pm10"] = _pm_10[1].avg;
pms["channels"]["2"]["pm10"] = _pm_10[1].avg;
}
/// PM03 particle count
if (utils::isValidPm03Count(_pm_03_pc[0].avg) && utils::isValidPm03Count(_pm_03_pc[1].avg)) {
float avg = (_pm_03_pc[0].avg + _pm_03_pc[1].avg) / 2.0f;
pms["pm003Count"] = ag.round2(avg);
pms["channels"]["1"]["pm003Count"] = _pm_03_pc[0].avg;
pms["channels"]["2"]["pm003Count"] = _pm_03_pc[1].avg;
} else if (utils::isValidPm(_pm_03_pc[0].avg)) {
pms["pm003Count"] = _pm_03_pc[0].avg;
pms["channels"]["1"]["pm003Count"] = _pm_03_pc[0].avg;
} else if (utils::isValidPm(_pm_03_pc[1].avg)) {
pms["pm003Count"] = _pm_03_pc[1].avg;
pms["channels"]["2"]["pm003Count"] = _pm_03_pc[1].avg;
}
if (withTempHum) {
/// Temperature
if (utils::isValidTemperature(_temperature[0].avg) &&
utils::isValidTemperature(_temperature[1].avg)) {
float temperature = (_temperature[0].avg + _temperature[1].avg) / 2.0f;
pms["atmp"] = ag.round2(temperature);
pms["channels"]["1"]["atmp"] = ag.round2(_temperature[0].avg);
pms["channels"]["2"]["atmp"] = ag.round2(_temperature[1].avg);
if (compensate) {
// Compensate both temperature channel
float temp = ag.pms5003t_1.compensateTemp(temperature);
float temp1 = ag.pms5003t_1.compensateTemp(_temperature[0].avg);
float temp2 = ag.pms5003t_2.compensateTemp(_temperature[1].avg);
pms["atmpCompensated"] = ag.round2(temp);
pms["channels"]["1"]["atmpCompensated"] = ag.round2(temp1);
pms["channels"]["2"]["atmpCompensated"] = ag.round2(temp2);
}
} else if (utils::isValidTemperature(_temperature[0].avg)) {
pms["atmp"] = ag.round2(_temperature[0].avg);
pms["channels"]["1"]["atmp"] = ag.round2(_temperature[0].avg);
if (compensate) {
// Compensate channel 1
float temp1 = ag.pms5003t_1.compensateTemp(_temperature[0].avg);
pms["atmpCompensated"] = ag.round2(temp1);
pms["channels"]["1"]["atmpCompensated"] = ag.round2(temp1);
}
} else if (utils::isValidTemperature(_temperature[1].avg)) {
pms["atmp"] = ag.round2(_temperature[1].avg);
pms["channels"]["2"]["atmp"] = ag.round2(_temperature[1].avg);
if (compensate) {
// Compensate channel 2
float temp2 = ag.pms5003t_2.compensateTemp(_temperature[1].avg);
pms["atmpCompensated"] = ag.round2(temp2);
pms["channels"]["2"]["atmpCompensated"] = ag.round2(temp2);
}
}
/// Relative humidity
if (utils::isValidHumidity(_humidity[0].avg) && utils::isValidHumidity(_humidity[1].avg)) {
float humidity = (_humidity[0].avg + _humidity[1].avg) / 2.0f;
pms["rhum"] = ag.round2(humidity);
pms["channels"]["1"]["rhum"] = ag.round2(_humidity[0].avg);
pms["channels"]["2"]["rhum"] = ag.round2(_humidity[1].avg);
if (compensate) {
// Compensate both humidity channel
float hum = ag.pms5003t_1.compensateHum(humidity);
float hum1 = ag.pms5003t_1.compensateHum(_humidity[0].avg);
float hum2 = ag.pms5003t_2.compensateHum(_humidity[1].avg);
pms["rhumCompensated"] = ag.round2(hum);
pms["channels"]["1"]["rhumCompensated"] = ag.round2(hum1);
pms["channels"]["2"]["rhumCompensated"] = ag.round2(hum2);
}
} else if (utils::isValidHumidity(_humidity[0].avg)) {
pms["rhum"] = ag.round2(_humidity[0].avg);
pms["channels"]["1"]["rhum"] = ag.round2(_humidity[0].avg);
if (compensate) {
// Compensate humidity channel 1
float hum1 = ag.pms5003t_1.compensateHum(_humidity[0].avg);
pms["rhumCompensated"] = ag.round2(hum1);
pms["channels"]["1"]["rhumCompensated"] = ag.round2(hum1);
}
} else if (utils::isValidHumidity(_humidity[1].avg)) {
pms["rhum"] = ag.round2(_humidity[1].avg);
pms["channels"]["2"]["rhum"] = ag.round2(_humidity[1].avg);
if (compensate) {
// Compensate humidity channel 2
float hum2 = ag.pms5003t_2.compensateHum(_humidity[1].avg);
pms["rhumCompensated"] = ag.round2(hum2);
pms["channels"]["2"]["rhumCompensated"] = ag.round2(hum2);
}
}
if (compensate) {
// Add pm25 compensated value
/// First get both channel compensated value
int pm25_comp1 = utils::getInvalidPmValue();
int pm25_comp2 = utils::getInvalidPmValue();
if (utils::isValidPm(_pm_25[0].avg) && utils::isValidHumidity(_humidity[0].avg)) {
pm25_comp1 = ag.pms5003t_1.compensate(_pm_25[0].avg, _humidity[0].avg);
pms["channels"]["1"]["pm02Compensated"] = pm25_comp1;
}
if (utils::isValidPm(_pm_25[1].avg) && utils::isValidHumidity(_humidity[1].avg)) {
pm25_comp2 = ag.pms5003t_2.compensate(_pm_25[1].avg, _humidity[1].avg);
pms["channels"]["2"]["pm02Compensated"] = pm25_comp2;
}
/// Get average or one of the channel compensated value if only one channel is valid
if (utils::isValidPm(pm25_comp1) && utils::isValidPm(pm25_comp2)) {
pms["pm02Compensated"] = (int)((pm25_comp1 / pm25_comp2) / 2);
} else if (utils::isValidPm(pm25_comp1)) {
pms["pm02Compensated"] = pm25_comp1;
} else if (utils::isValidPm(pm25_comp2)) {
pms["pm02Compensated"] = pm25_comp2;
}
}
}
return pms;
2024-10-11 22:11:26 +07:00
}