ESPHome  2024.4.0
xiaomi_lywsdcgq.cpp
Go to the documentation of this file.
1 #include "xiaomi_lywsdcgq.h"
2 #include "esphome/core/log.h"
3 
4 #ifdef USE_ESP32
5 
6 namespace esphome {
7 namespace xiaomi_lywsdcgq {
8 
9 static const char *const TAG = "xiaomi_lywsdcgq";
10 
12  ESP_LOGCONFIG(TAG, "Xiaomi LYWSDCGQ");
13  LOG_SENSOR(" ", "Temperature", this->temperature_);
14  LOG_SENSOR(" ", "Humidity", this->humidity_);
15  LOG_SENSOR(" ", "Battery Level", this->battery_level_);
16 }
17 
19  if (device.address_uint64() != this->address_) {
20  ESP_LOGVV(TAG, "parse_device(): unknown MAC address.");
21  return false;
22  }
23  ESP_LOGVV(TAG, "parse_device(): MAC address %s found.", device.address_str().c_str());
24 
25  bool success = false;
26  for (auto &service_data : device.get_service_datas()) {
27  auto res = xiaomi_ble::parse_xiaomi_header(service_data);
28  if (!res.has_value()) {
29  continue;
30  }
31  if (res->is_duplicate) {
32  continue;
33  }
34  if (res->has_encryption) {
35  ESP_LOGVV(TAG, "parse_device(): payload decryption is currently not supported on this device.");
36  continue;
37  }
38  if (!(xiaomi_ble::parse_xiaomi_message(service_data.data, *res))) {
39  continue;
40  }
41  if (!(xiaomi_ble::report_xiaomi_results(res, device.address_str()))) {
42  continue;
43  }
44  if (res->temperature.has_value() && this->temperature_ != nullptr)
45  this->temperature_->publish_state(*res->temperature);
46  if (res->humidity.has_value() && this->humidity_ != nullptr)
47  this->humidity_->publish_state(*res->humidity);
48  if (res->battery_level.has_value() && this->battery_level_ != nullptr)
49  this->battery_level_->publish_state(*res->battery_level);
50  success = true;
51  }
52 
53  return success;
54 }
55 
56 } // namespace xiaomi_lywsdcgq
57 } // namespace esphome
58 
59 #endif
bool parse_device(const esp32_ble_tracker::ESPBTDevice &device) override
void publish_state(float state)
Publish a new state to the front-end.
Definition: sensor.cpp:39
const std::vector< ServiceData > & get_service_datas() const
bool parse_xiaomi_message(const std::vector< uint8_t > &message, XiaomiParseResult &result)
Definition: xiaomi_ble.cpp:90
optional< XiaomiParseResult > parse_xiaomi_header(const esp32_ble_tracker::ServiceData &service_data)
Definition: xiaomi_ble.cpp:138
bool report_xiaomi_results(const optional< XiaomiParseResult > &result, const std::string &address)
Definition: xiaomi_ble.cpp:322
This is a workaround until we can figure out a way to get the tflite-micro idf component code availab...
Definition: a01nyub.cpp:7