co2_sensor.cpp 12.7 KB
Newer Older
1
2
3
#include "co2_sensor.h"

namespace config {
4
  // UPPERCASE values should be defined in config.h
Eric Duminil's avatar
Eric Duminil committed
5
  uint16_t measurement_timestep = MEASUREMENT_TIMESTEP; // [s] Value between 2 and 1800 (range for SCD30 sensor).
Eric Duminil's avatar
Eric Duminil committed
6
7
  const uint16_t altitude_above_sea_level = ALTITUDE_ABOVE_SEA_LEVEL; // [m]
  uint16_t co2_calibration_level = ATMOSPHERIC_CO2_CONCENTRATION; // [ppm]
8
  const uint16_t measurement_timestep_bootup = 5; // [s] Measurement timestep during acclimatization.
9
  const uint8_t max_deviation_during_bootup = 20; // [%]
10
11
12
13
  const int8_t max_deviation_during_calibration = 30; // [ppm]
  const int16_t timestep_during_calibration = 10; // [s] WARNING: Measurements can be unreliable for timesteps shorter than 10s.
  const int8_t stable_measurements_before_calibration = 120 / timestep_during_calibration; // [-] Stable measurements during at least 2 minutes.

14
15
16
#ifdef TEMPERATURE_OFFSET
  // Residual heat from CO2 sensor seems to be high enough to change the temperature reading. How much should it be offset?
  // NOTE: Sign isn't relevant. The returned temperature will always be shifted down.
Eric Duminil's avatar
Eric Duminil committed
17
  const float temperature_offset = TEMPERATURE_OFFSET; // [K]
18
19
20
#else
  const float temperature_offset = -3.0;  // [K] Temperature measured by sensor is usually at least 3K too high.
#endif
21
  bool auto_calibrate_sensor = AUTO_CALIBRATE_SENSOR; // [true / false]
22
  const bool debug_sensor_states = false; // If true, log state transitions over serial console
23
24
25
26
}

namespace sensor {
  SCD30 scd30;
27
  uint16_t co2 = 0;
28
29
  float temperature = 0;
  float humidity = 0;
30
  char timestamp[23];
31
  int16_t stable_measurements = 0;
Käppler's avatar
Käppler committed
32
33
34

  /**
   * Define sensor states
35
   * BOOTUP -> initial state, until first >0 ppm values are returned
Käppler's avatar
Käppler committed
36
   * READY -> sensor does output valid information (> 0 ppm) and no other condition takes place
Eric Duminil's avatar
Eric Duminil committed
37
   * NEEDS_CALIBRATION -> sensor measurements are too low (< 250 ppm)
38
39
   * PREPARE_CALIBRATION_UNSTABLE -> forced calibration was initiated, last measurements were too far apart
   * PREPARE_CALIBRATION_STABLE -> forced calibration was initiated, last measurements were close to each others
Käppler's avatar
Käppler committed
40
   */
41
42
43
  enum state {
    BOOTUP,
    READY,
44
    NEEDS_CALIBRATION,
45
    PREPARE_CALIBRATION_UNSTABLE,
46
    PREPARE_CALIBRATION_STABLE
Käppler's avatar
Käppler committed
47
  };
48
49
50
  const char *state_names[] = {
      "BOOTUP",
      "READY",
51
      "NEEDS_CALIBRATION",
52
      "PREPARE_CALIBRATION_UNSTABLE",
53
      "PREPARE_CALIBRATION_STABLE" };
54
55

  state current_state = BOOTUP;
Käppler's avatar
Käppler committed
56
57
  void switchState(state);

58
59
  void initialize() {
#if defined(ESP8266)
60
    Wire.begin(12, 14); // ESP8266 - D6, D5;
61
62
#endif
#if defined(ESP32)
Eric Duminil's avatar
Eric Duminil committed
63
    Wire.begin(21, 22); // ESP32
64
65
66
67
68
69
70
71
    /**
     *  SCD30   ESP32
     *  VCC --- 3V3
     *  GND --- GND
     *  SCL --- SCL (GPIO22) //NOTE: GPIO3 Would be more convenient (right next to GND)
     *  SDA --- SDA (GPIO21) //NOTE: GPIO1 would be more convenient (right next to GPO3)
     */
#endif
72
73
    Serial.println();
    scd30.enableDebugging(); // Prints firmware version in the console.
74

75
    if (!scd30.begin(config::auto_calibrate_sensor)) {
Eric Duminil's avatar
Eric Duminil committed
76
77
78
      Serial.println(F("ERROR - CO2 sensor not detected. Please check wiring!"));
      led_effects::showKITTWheel(color::red, 30);
      ESP.restart();
79
80
    }

81
82
83
84
85
    // Changes of the SCD30's measurement timestep do not come into effect
    // before the next measurement takes place. That means that after a hard reset
    // of the ESP the SCD30 sometimes needs a long time until switching back to 2 s
    // for acclimatization. Resetting it after startup seems to fix this behaviour.
    scd30.reset();
Käppler's avatar
Käppler committed
86

87
    Serial.print(F("Setting temperature offset to -"));
88
    Serial.print(abs(config::temperature_offset));
Eric Duminil's avatar
Eric Duminil committed
89
    Serial.println(F(" K."));
90
    scd30.setTemperatureOffset(abs(config::temperature_offset)); // setTemperatureOffset only accepts positive numbers, but shifts the temperature down.
91
    delay(100);
92

93
    Serial.print(F("Temperature offset is : -"));
94
    Serial.print(scd30.getTemperatureOffset());
Eric Duminil's avatar
Eric Duminil committed
95
    Serial.println(F(" K"));
96

97
    Serial.print(F("Auto-calibration is "));
98
    Serial.println(config::auto_calibrate_sensor ? "ON." : "OFF.");
99

100
101
102
103
    // SCD30 has its own timer.
    //NOTE: The timer seems to be inaccurate, though, possibly depending on voltage. Should it be offset?
    Serial.println();
    Serial.print(F("Setting SCD30 timestep to "));
104
    Serial.print(config::measurement_timestep_bootup);
Eric Duminil's avatar
Eric Duminil committed
105
    Serial.println(F(" s during acclimatization."));
106
    scd30.setMeasurementInterval(config::measurement_timestep_bootup); // [s]
107

108
109
110
    sensor_console::defineIntCommand("co2", setCO2forDebugging, F("1500 (Sets co2 level, for debugging purposes)"));
    sensor_console::defineIntCommand("timer", setTimer, F("30 (Sets measurement interval, in s)"));
    sensor_console::defineCommand("calibrate", startCalibrationProcess, F("(Starts calibration process)"));
Eric Duminil's avatar
Eric Duminil committed
111
    sensor_console::defineIntCommand("calibrate", calibrateSensorToSpecificPPM,
112
        F("600 (Starts calibration process, to given ppm)"));
Eric Duminil's avatar
Eric Duminil committed
113
    sensor_console::defineIntCommand("calibrate!", calibrateSensorRightNow,
114
115
        F("600 (Calibrates right now, to given ppm)"));
    sensor_console::defineIntCommand("auto_calibrate", setAutoCalibration, F("0/1 (Disables/enables autocalibration)"));
116
    sensor_console::defineCommand("reset_scd", resetSCD, F("(Resets SCD30)"));
117
118
  }

119
120
121
122
123
124
125
  bool hasSensorSettled() {
    static uint16_t last_co2 = 0;
    uint16_t delta;
    delta = abs(co2 - last_co2);
    last_co2 = co2;
    // We assume the sensor has acclimated to the environment if measurements
    // change less than a specified percentage of the current value.
Eric Duminil's avatar
Eric Duminil committed
126
    return (co2 > 0 && delta < ((uint32_t) co2 * config::max_deviation_during_bootup / 100));
127
128
  }

Eric Duminil's avatar
Eric Duminil committed
129
  bool enoughStableMeasurements() {
Eric Duminil's avatar
Eric Duminil committed
130
    static int16_t previous_co2 = 0;
Eric Duminil's avatar
Eric Duminil committed
131
132
    if (co2 > (previous_co2 - config::max_deviation_during_calibration)
        && co2 < (previous_co2 + config::max_deviation_during_calibration)) {
133
      stable_measurements++;
Eric Duminil's avatar
Eric Duminil committed
134
      Serial.print(F("Number of stable measurements : "));
135
136
137
      Serial.print(stable_measurements);
      Serial.print(F(" / "));
      Serial.println(config::stable_measurements_before_calibration);
138
      switchState(PREPARE_CALIBRATION_STABLE);
139
140
    } else {
      stable_measurements = 0;
141
      switchState(PREPARE_CALIBRATION_UNSTABLE);
142
    }
Eric Duminil's avatar
Eric Duminil committed
143
    previous_co2 = co2;
144
    return (stable_measurements == config::stable_measurements_before_calibration);
145
146
147
  }

  void startCalibrationProcess() {
148
    /** From the sensor documentation:
Eric Duminil's avatar
Eric Duminil committed
149
     * Before applying FRC, SCD30 needs to be operated for 2 minutes with the desired measurement period in continuous mode.
150
     */
151
152
153
154
    Serial.print(F("Setting SCD30 timestep to "));
    Serial.print(config::timestep_during_calibration);
    Serial.println(F("s, prior to calibration."));
    scd30.setMeasurementInterval(config::timestep_during_calibration); // [s] The change will only take effect after next measurement.
155
156
    Serial.println(F("Waiting until the measurements are stable for at least 2 minutes."));
    Serial.println(F("It could take a very long time."));
157
    switchState(PREPARE_CALIBRATION_UNSTABLE);
158
159
  }

160
  void calibrate() {
161
    Serial.print(F("Calibrating SCD30 now..."));
162
163
    scd30.setAltitudeCompensation(config::altitude_above_sea_level);
    scd30.setForcedRecalibrationFactor(config::co2_calibration_level);
164
165
    Serial.println(F(" Done!"));
    Serial.println(F("Sensor calibrated."));
166
    switchState(BOOTUP); // In order to stop the calibration and select the desired timestep.
167
168
    //WARNING: Do not reset the ampel or the SCD30!
    //At least one measurement needs to happen in order for the calibration to be correctly applied.
169
  }
170

171
  void logToSerial() {
Eric Duminil's avatar
Eric Duminil committed
172
173
    Serial.print(timestamp);
    Serial.print(F(" - co2(ppm): "));
174
175
    Serial.print(co2);
    Serial.print(F(" temp(C): "));
176
    Serial.print(temperature, 1);
177
    Serial.print(F(" humidity(%): "));
178
    Serial.println(humidity, 1);
179
180
  }

Käppler's avatar
Käppler committed
181
  void switchState(state new_state) {
182
183
184
    if (new_state == current_state) {
      return;
    }
185
186
187
    if (config::debug_sensor_states) {
      Serial.print(F("Changing sensor state: "));
      Serial.print(state_names[current_state]);
Eric Duminil's avatar
Eric Duminil committed
188
      Serial.print(F(" -> "));
189
190
      Serial.println(state_names[new_state]);
    }
Käppler's avatar
Käppler committed
191
192
193
    current_state = new_state;
  }

194
  void switchStateForCurrentPPM() {
195
    if (current_state == BOOTUP) {
Eric Duminil's avatar
Eric Duminil committed
196
197
198
      if (!hasSensorSettled()) {
        return;
      }
199
200
201
202
      switchState(READY);
      Serial.println(F("Sensor acclimatization finished."));
      Serial.print(F("Setting SCD30 timestep to "));
      Serial.print(config::measurement_timestep);
Eric Duminil's avatar
Eric Duminil committed
203
      Serial.println(F(" s."));
Eric Duminil's avatar
Eric Duminil committed
204
      if (config::measurement_timestep < 10) {
205
206
        Serial.println(F("WARNING: Timesteps shorter than 10s can lead to unreliable measurements!"));
      }
207
208
      scd30.setMeasurementInterval(config::measurement_timestep); // [s]
    }
Eric Duminil's avatar
Eric Duminil committed
209
210
211

    // Check for pre-calibration states first, because we do not want to
    // leave them before calibration is done.
Käppler's avatar
Käppler committed
212
    if ((current_state == PREPARE_CALIBRATION_UNSTABLE) || (current_state == PREPARE_CALIBRATION_STABLE)) {
Eric Duminil's avatar
Eric Duminil committed
213
      if (enoughStableMeasurements()) {
214
        calibrate();
215
216
217
218
219
220
221
222
223
      }
    } else if (co2 < 250) {
      // Sensor should be calibrated.
      switchState(NEEDS_CALIBRATION);
    } else {
      switchState(READY);
    }
  }

224
225
226
  void displayCO2OnLedRing() {
    /**
     * Display data, even if it's "old" (with breathing).
Eric Duminil's avatar
Eric Duminil committed
227
     * A short delay is required in order to let background tasks run on the ESP8266.
228
     * see https://github.com/esp8266/Arduino/issues/3241#issuecomment-301290392
229
230
     */
    if (co2 < 2000) {
231
      led_effects::displayCO2color(co2);
232
      delay(100);
233
234
    } else {
      // >= 2000: entire ring blinks red
235
      led_effects::redAlert();
236
237
238
    }
  }

239
  void showState() {
240
241
242
243
244
    switch (current_state) {
    case BOOTUP:
      led_effects::showWaitingLED(color::blue);
      break;
    case READY:
245
      displayCO2OnLedRing();
246
      break;
247
    case NEEDS_CALIBRATION:
248
249
      led_effects::showWaitingLED(color::magenta);
      break;
250
    case PREPARE_CALIBRATION_UNSTABLE:
251
252
      led_effects::showWaitingLED(color::red);
      break;
253
    case PREPARE_CALIBRATION_STABLE:
254
255
256
      led_effects::showWaitingLED(color::green);
      break;
    default:
Eric Duminil's avatar
Eric Duminil committed
257
      Serial.println(F("Encountered unknown sensor state")); // This should not happen.
258
259
260
    }
  }

Eric Duminil's avatar
Eric Duminil committed
261
  /** Gets fresh data if available, checks calibration status, displays CO2 levels.
262
   * Returns true if fresh data is available, for further processing (e.g. MQTT, CSV or LoRa)
Eric Duminil's avatar
Eric Duminil committed
263
264
265
266
267
   */
  bool processData() {
    bool freshData = scd30.dataAvailable();

    if (freshData) {
268
      ntp::getLocalTime(timestamp);
Eric Duminil's avatar
Eric Duminil committed
269
270
271
      co2 = scd30.getCO2();
      temperature = scd30.getTemperature();
      humidity = scd30.getHumidity();
272

273
      switchStateForCurrentPPM();
274

275
276
      // Log every time fresh data is available.
      logToSerial();
277
278
    }

279
    showState();
280

281
282
283
    // Report data for further processing only if the data is reliable
    // (state 'READY') or manual calibration is necessary (state 'NEEDS_CALIBRATION').
    return freshData && (current_state == READY || current_state == NEEDS_CALIBRATION);
284
  }
285
286
287
288
289
290
291
292

  /*****************************************************************
   * Callbacks for sensor commands                                 *
   *****************************************************************/
  void setCO2forDebugging(int32_t fakeCo2) {
    Serial.print(F("DEBUG. Setting CO2 to "));
    co2 = fakeCo2;
    Serial.println(co2);
293
    switchStateForCurrentPPM();
294
295
  }

296
297
298
299
300
301
302
  void setAutoCalibration(int32_t autoCalibration) {
    config::auto_calibrate_sensor = autoCalibration;
    scd30.setAutoSelfCalibration(autoCalibration);
    Serial.print(F("Setting auto-calibration to : "));
    Serial.println(autoCalibration ? F("On.") : F("Off."));
  }

303
304
305
306
  void setTimer(int32_t timestep) {
    if (timestep >= 2 && timestep <= 1800) {
      Serial.print(F("Setting Measurement Interval to : "));
      Serial.print(timestep);
Eric Duminil's avatar
Eric Duminil committed
307
      Serial.println(F("s (change will only be applied after next measurement)."));
Eric Duminil's avatar
Eric Duminil committed
308
      scd30.setMeasurementInterval(timestep);
309
310
311
312
313
314
315
316
317
318
      config::measurement_timestep = timestep;
      led_effects::showKITTWheel(color::green, 1);
    }
  }

  void calibrateSensorToSpecificPPM(int32_t calibrationLevel) {
    if (calibrationLevel >= 400 && calibrationLevel <= 2000) {
      Serial.print(F("Force calibration, at "));
      config::co2_calibration_level = calibrationLevel;
      Serial.print(config::co2_calibration_level);
Eric Duminil's avatar
Eric Duminil committed
319
      Serial.println(F(" ppm."));
Eric Duminil's avatar
Eric Duminil committed
320
      startCalibrationProcess();
321
322
323
324
    }
  }

  void calibrateSensorRightNow(int32_t calibrationLevel) {
Eric Duminil's avatar
Eric Duminil committed
325
326
327
328
329
    if (calibrationLevel >= 400 && calibrationLevel <= 2000) {
      Serial.print(F("Force calibration, right now, at "));
      config::co2_calibration_level = calibrationLevel;
      Serial.print(config::co2_calibration_level);
      Serial.println(F(" ppm."));
330
      calibrate();
Eric Duminil's avatar
Eric Duminil committed
331
    }
332
  }
333
334
335
336
337
338

  void resetSCD() {
    Serial.print(F("Resetting SCD30..."));
    scd30.reset();
    Serial.println(F("done."));
  }
339
}