8static const char *
const TAG =
"mhz19";
9static const uint8_t MHZ19_REQUEST_LENGTH = 8;
10static const uint8_t MHZ19_RESPONSE_LENGTH = 9;
11static const uint8_t MHZ19_COMMAND_GET_PPM[] = {0xFF, 0x01, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00};
12static const uint8_t MHZ19_COMMAND_ABC_ENABLE[] = {0xFF, 0x01, 0x79, 0xA0, 0x00, 0x00, 0x00, 0x00};
13static const uint8_t MHZ19_COMMAND_ABC_DISABLE[] = {0xFF, 0x01, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00};
14static const uint8_t MHZ19_COMMAND_CALIBRATE_ZERO[] = {0xFF, 0x01, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00};
15static const uint8_t MHZ19_COMMAND_DETECTION_RANGE_0_2000PPM[] = {0xFF, 0x01, 0x99, 0x00, 0x00, 0x00, 0x07, 0xD0};
16static const uint8_t MHZ19_COMMAND_DETECTION_RANGE_0_5000PPM[] = {0xFF, 0x01, 0x99, 0x00, 0x00, 0x00, 0x13, 0x88};
17static const uint8_t MHZ19_COMMAND_DETECTION_RANGE_0_10000PPM[] = {0xFF, 0x01, 0x99, 0x00, 0x00, 0x00, 0x27, 0x10};
22 return LOG_STR(
"0-2000 ppm");
24 return LOG_STR(
"0-5000 ppm");
26 return LOG_STR(
"0-10000 ppm");
28 return LOG_STR(
"default");
34 for (uint8_t i = 1; i < MHZ19_REQUEST_LENGTH; i++) {
37 return 0xFF - sum + 0x01;
51 uint32_t now_ms =
millis();
53 if (now_ms < warmup_ms) {
54 ESP_LOGW(TAG,
"MHZ19 warming up, %" PRIu32
" s left", (warmup_ms - now_ms) / 1000);
59 uint8_t response[MHZ19_RESPONSE_LENGTH];
61 ESP_LOGW(TAG,
"Reading data from MHZ19 failed!");
66 if (response[0] != 0xFF || response[1] != 0x86) {
67 ESP_LOGW(TAG,
"Invalid preamble from MHZ19!");
74 ESP_LOGW(TAG,
"MHZ19 Checksum doesn't match: 0x%02X!=0x%02X", response[8],
checksum);
80 const uint16_t ppm = (uint16_t(response[2]) << 8) | response[3];
81 const int temp = int(response[4]) - 40;
82 const uint8_t
status = response[5];
84 ESP_LOGD(TAG,
"MHZ19 Received CO₂=%uppm Temperature=%d°C Status=0x%02X", ppm, temp,
status);
92 ESP_LOGD(TAG,
"MHZ19 Calibrating zero point");
97 ESP_LOGD(TAG,
"MHZ19 Enabling automatic baseline calibration");
102 ESP_LOGD(TAG,
"MHZ19 Disabling automatic baseline calibration");
107 const uint8_t *command;
108 switch (detection_range) {
110 command = MHZ19_COMMAND_DETECTION_RANGE_0_2000PPM;
113 command = MHZ19_COMMAND_DETECTION_RANGE_0_5000PPM;
116 command = MHZ19_COMMAND_DETECTION_RANGE_0_10000PPM;
119 ESP_LOGV(TAG,
"Using previously set detection range (no change)");
122 ESP_LOGD(TAG,
"Setting detection range to %s", LOG_STR_ARG(detection_range_to_log_string(detection_range)));
134 if (response ==
nullptr)
137 return this->
read_array(response, MHZ19_RESPONSE_LENGTH);
141 ESP_LOGCONFIG(TAG,
"MH-Z19:");
147 ESP_LOGCONFIG(TAG,
" Automatic baseline calibration enabled on boot");
149 ESP_LOGCONFIG(TAG,
" Automatic baseline calibration disabled on boot");
152 ESP_LOGCONFIG(TAG,
" Warmup time: %" PRIu32
" s", this->
warmup_seconds_);
153 ESP_LOGCONFIG(TAG,
" Detection range: %s", LOG_STR_ARG(detection_range_to_log_string(this->
detection_range_)));
void check_uart_settings(uint32_t baud_rate, uint8_t stop_bits=1, UARTParityOptions parity=UART_CONFIG_PARITY_NONE, uint8_t data_bits=8)
Check that the configuration of the UART bus matches the provided values and otherwise print a warnin...