ESPHome 2026.2.4
Loading...
Searching...
No Matches
mhz19.cpp
Go to the documentation of this file.
1#include "mhz19.h"
2#include "esphome/core/log.h"
3
4#include <cinttypes>
5
6namespace esphome::mhz19 {
7
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};
18
19static const LogString *detection_range_to_log_string(MHZ19DetectionRange range) {
20 switch (range) {
22 return LOG_STR("0-2000 ppm");
24 return LOG_STR("0-5000 ppm");
26 return LOG_STR("0-10000 ppm");
27 default:
28 return LOG_STR("default");
29 }
30}
31
32uint8_t mhz19_checksum(const uint8_t *command) {
33 uint8_t sum = 0;
34 for (uint8_t i = 1; i < MHZ19_REQUEST_LENGTH; i++) {
35 sum += command[i];
36 }
37 return 0xFF - sum + 0x01;
38}
39
42 this->abc_enable();
43 } else if (this->abc_boot_logic_ == MHZ19_ABC_DISABLED) {
44 this->abc_disable();
45 }
46
47 this->range_set(this->detection_range_);
48}
49
51 uint32_t now_ms = millis();
52 uint32_t warmup_ms = this->warmup_seconds_ * 1000;
53 if (now_ms < warmup_ms) {
54 ESP_LOGW(TAG, "MHZ19 warming up, %" PRIu32 " s left", (warmup_ms - now_ms) / 1000);
55 this->status_set_warning();
56 return;
57 }
58
59 uint8_t response[MHZ19_RESPONSE_LENGTH];
60 if (!this->mhz19_write_command_(MHZ19_COMMAND_GET_PPM, response)) {
61 ESP_LOGW(TAG, "Reading data from MHZ19 failed!");
62 this->status_set_warning();
63 return;
64 }
65
66 if (response[0] != 0xFF || response[1] != 0x86) {
67 ESP_LOGW(TAG, "Invalid preamble from MHZ19!");
68 this->status_set_warning();
69 return;
70 }
71
72 uint8_t checksum = mhz19_checksum(response);
73 if (response[8] != checksum) {
74 ESP_LOGW(TAG, "MHZ19 Checksum doesn't match: 0x%02X!=0x%02X", response[8], checksum);
75 this->status_set_warning();
76 return;
77 }
78
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];
83
84 ESP_LOGD(TAG, "MHZ19 Received CO₂=%uppm Temperature=%d°C Status=0x%02X", ppm, temp, status);
85 if (this->co2_sensor_ != nullptr)
86 this->co2_sensor_->publish_state(ppm);
87 if (this->temperature_sensor_ != nullptr)
89}
90
92 ESP_LOGD(TAG, "MHZ19 Calibrating zero point");
93 this->mhz19_write_command_(MHZ19_COMMAND_CALIBRATE_ZERO, nullptr);
94}
95
97 ESP_LOGD(TAG, "MHZ19 Enabling automatic baseline calibration");
98 this->mhz19_write_command_(MHZ19_COMMAND_ABC_ENABLE, nullptr);
99}
100
102 ESP_LOGD(TAG, "MHZ19 Disabling automatic baseline calibration");
103 this->mhz19_write_command_(MHZ19_COMMAND_ABC_DISABLE, nullptr);
104}
105
107 const uint8_t *command;
108 switch (detection_range) {
110 command = MHZ19_COMMAND_DETECTION_RANGE_0_2000PPM;
111 break;
113 command = MHZ19_COMMAND_DETECTION_RANGE_0_5000PPM;
114 break;
116 command = MHZ19_COMMAND_DETECTION_RANGE_0_10000PPM;
117 break;
118 default:
119 ESP_LOGV(TAG, "Using previously set detection range (no change)");
120 return;
121 }
122 ESP_LOGD(TAG, "Setting detection range to %s", LOG_STR_ARG(detection_range_to_log_string(detection_range)));
123 this->mhz19_write_command_(command, nullptr);
124}
125
126bool MHZ19Component::mhz19_write_command_(const uint8_t *command, uint8_t *response) {
127 // Empty RX Buffer
128 while (this->available())
129 this->read();
130 this->write_array(command, MHZ19_REQUEST_LENGTH);
131 this->write_byte(mhz19_checksum(command));
132 this->flush();
133
134 if (response == nullptr)
135 return true;
136
137 return this->read_array(response, MHZ19_RESPONSE_LENGTH);
138}
139
141 ESP_LOGCONFIG(TAG, "MH-Z19:");
142 LOG_SENSOR(" ", "CO2", this->co2_sensor_);
143 LOG_SENSOR(" ", "Temperature", this->temperature_sensor_);
144 this->check_uart_settings(9600);
145
146 if (this->abc_boot_logic_ == MHZ19_ABC_ENABLED) {
147 ESP_LOGCONFIG(TAG, " Automatic baseline calibration enabled on boot");
148 } else if (this->abc_boot_logic_ == MHZ19_ABC_DISABLED) {
149 ESP_LOGCONFIG(TAG, " Automatic baseline calibration disabled on boot");
150 }
151
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_)));
154}
155
156} // namespace esphome::mhz19
uint8_t checksum
Definition bl0906.h:3
uint8_t status
Definition bl0942.h:8
void status_set_warning(const char *message=nullptr)
void status_clear_warning()
void range_set(MHZ19DetectionRange detection_range)
Definition mhz19.cpp:106
void dump_config() override
Definition mhz19.cpp:140
MHZ19DetectionRange detection_range_
Definition mhz19.h:49
sensor::Sensor * temperature_sensor_
Definition mhz19.h:43
sensor::Sensor * co2_sensor_
Definition mhz19.h:44
bool mhz19_write_command_(const uint8_t *command, uint8_t *response)
Definition mhz19.cpp:126
MHZ19ABCLogic abc_boot_logic_
Definition mhz19.h:45
void publish_state(float state)
Publish a new state to the front-end.
Definition sensor.cpp:65
optional< std::array< uint8_t, N > > read_array()
Definition uart.h:38
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...
Definition uart.cpp:16
void write_byte(uint8_t data)
Definition uart.h:18
void write_array(const uint8_t *data, size_t len)
Definition uart.h:26
Range range
Definition msa3xx.h:0
@ MHZ19_ABC_DISABLED
Definition mhz19.h:13
@ MHZ19_ABC_ENABLED
Definition mhz19.h:12
uint8_t mhz19_checksum(const uint8_t *command)
Definition mhz19.cpp:32
MHZ19DetectionRange
Definition mhz19.h:16
@ MHZ19_DETECTION_RANGE_0_10000PPM
Definition mhz19.h:20
@ MHZ19_DETECTION_RANGE_0_5000PPM
Definition mhz19.h:19
@ MHZ19_DETECTION_RANGE_0_2000PPM
Definition mhz19.h:18
uint32_t IRAM_ATTR HOT millis()
Definition core.cpp:25