7static const char *
const TAG =
"senseair";
8static const uint8_t SENSEAIR_REQUEST_LENGTH = 8;
9static const uint8_t SENSEAIR_PPM_STATUS_RESPONSE_LENGTH = 13;
10static const uint8_t SENSEAIR_ABC_PERIOD_RESPONSE_LENGTH = 7;
11static const uint8_t SENSEAIR_CAL_RESULT_RESPONSE_LENGTH = 7;
12static const uint8_t SENSEAIR_COMMAND_GET_PPM_STATUS[] = {0xFE, 0x04, 0x00, 0x00, 0x00, 0x04, 0xE5, 0xC6};
13static const uint8_t SENSEAIR_COMMAND_CLEAR_ACK_REGISTER[] = {0xFE, 0x06, 0x00, 0x00, 0x00, 0x00, 0x9D, 0xC5};
14static const uint8_t SENSEAIR_COMMAND_BACKGROUND_CAL[] = {0xFE, 0x06, 0x00, 0x01, 0x7C, 0x06, 0x6C, 0xC7};
15static const uint8_t SENSEAIR_COMMAND_BACKGROUND_CAL_RESULT[] = {0xFE, 0x03, 0x00, 0x00, 0x00, 0x01, 0x90, 0x05};
16static const uint8_t SENSEAIR_COMMAND_ABC_ENABLE[] = {0xFE, 0x06, 0x00, 0x1F, 0x00, 0xB4, 0xAC, 0x74};
17static const uint8_t SENSEAIR_COMMAND_ABC_DISABLE[] = {0xFE, 0x06, 0x00, 0x1F, 0x00, 0x00, 0xAC, 0x03};
18static const uint8_t SENSEAIR_COMMAND_ABC_GET_PERIOD[] = {0xFE, 0x03, 0x00, 0x1F, 0x00, 0x01, 0xA1, 0xC3};
21 uint8_t response[SENSEAIR_PPM_STATUS_RESPONSE_LENGTH];
22 if (!this->
senseair_write_command_(SENSEAIR_COMMAND_GET_PPM_STATUS, response, SENSEAIR_PPM_STATUS_RESPONSE_LENGTH)) {
23 ESP_LOGW(TAG,
"Reading data from SenseAir failed!");
28 if (response[0] != 0xFE || response[1] != 0x04) {
29 ESP_LOGW(TAG,
"Invalid preamble from SenseAir! %02x%02x%02x%02x %02x%02x%02x%02x %02x%02x%02x%02x %02x",
30 response[0], response[1], response[2], response[3], response[4], response[5], response[6], response[7],
31 response[8], response[9], response[10], response[11], response[12]);
37 ESP_LOGV(TAG,
" ... %02x", b);
39 ESP_LOGV(TAG,
" ... nothing read");
45 uint16_t calc_checksum =
crc16(response, 11);
46 uint16_t resp_checksum = (uint16_t(response[12]) << 8) | response[11];
47 if (resp_checksum != calc_checksum) {
48 ESP_LOGW(TAG,
"SenseAir checksum doesn't match: 0x%02X!=0x%02X", resp_checksum, calc_checksum);
54 const uint8_t
length = response[2];
58 ESP_LOGD(TAG,
"SenseAir Received CO₂=%uppm Status=0x%02X", ppm,
status);
60 ESP_LOGD(TAG,
"Discarding 0 ppm reading with out-of-range status.");
69 ESP_LOGD(TAG,
"SenseAir Starting background calibration");
70 uint8_t command_length =
sizeof(SENSEAIR_COMMAND_CLEAR_ACK_REGISTER) /
sizeof(SENSEAIR_COMMAND_CLEAR_ACK_REGISTER[0]);
71 uint8_t response[command_length];
77 ESP_LOGD(TAG,
"SenseAir Requesting background calibration result");
78 uint8_t response[SENSEAIR_CAL_RESULT_RESPONSE_LENGTH];
80 SENSEAIR_CAL_RESULT_RESPONSE_LENGTH)) {
81 ESP_LOGE(TAG,
"Requesting background calibration result from SenseAir failed!");
85 if (response[0] != 0xFE || response[1] != 0x03) {
86 ESP_LOGE(TAG,
"Invalid reply from SenseAir! %02x%02x%02x %02x%02x %02x%02x", response[0], response[1], response[2],
87 response[3], response[4], response[5], response[6]);
92 ESP_LOGI(TAG,
"SenseAir Result=%s (%02x%02x%02x %02x%02x %02x%02x)", (response[4] & 0b100000) != 0 ?
"OK" :
"NOT_OK",
93 response[0], response[1], response[2], response[3], response[4], response[5], response[6]);
98 ESP_LOGD(TAG,
"SenseAir Enabling automatic baseline calibration");
99 uint8_t command_length =
sizeof(SENSEAIR_COMMAND_ABC_ENABLE) /
sizeof(SENSEAIR_COMMAND_ABC_ENABLE[0]);
100 uint8_t response[command_length];
106 ESP_LOGD(TAG,
"SenseAir Disabling automatic baseline calibration");
107 uint8_t command_length =
sizeof(SENSEAIR_COMMAND_ABC_DISABLE) /
sizeof(SENSEAIR_COMMAND_ABC_DISABLE[0]);
108 uint8_t response[command_length];
113 ESP_LOGD(TAG,
"SenseAir Requesting ABC period");
114 uint8_t response[SENSEAIR_ABC_PERIOD_RESPONSE_LENGTH];
115 if (!this->
senseair_write_command_(SENSEAIR_COMMAND_ABC_GET_PERIOD, response, SENSEAIR_ABC_PERIOD_RESPONSE_LENGTH)) {
116 ESP_LOGE(TAG,
"Requesting ABC period from SenseAir failed!");
120 if (response[0] != 0xFE || response[1] != 0x03) {
121 ESP_LOGE(TAG,
"Invalid reply from SenseAir! %02x%02x%02x %02x%02x %02x%02x", response[0], response[1], response[2],
122 response[3], response[4], response[5], response[6]);
126 const uint16_t hours = (uint16_t(response[3]) << 8) | response[4];
127 ESP_LOGD(TAG,
"SenseAir Read ABC Period: %u hours", hours);
132 if (response ==
nullptr) {
139 this->
write_array(command, SENSEAIR_REQUEST_LENGTH);
141 bool ret = this->
read_array(response, response_length);
147 ESP_LOGCONFIG(TAG,
"SenseAir:");
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...
uint16_t crc16(const uint8_t *data, uint16_t len, uint16_t crc, uint16_t reverse_poly, bool refin, bool refout)
Calculate a CRC-16 checksum of data with size len.