ESPHome  2024.3.1
xiaomi_gcls002.cpp
Go to the documentation of this file.
1 #include "xiaomi_gcls002.h"
2 #include "esphome/core/log.h"
3 
4 #ifdef USE_ESP32
5 
6 namespace esphome {
7 namespace xiaomi_gcls002 {
8 
9 static const char *const TAG = "xiaomi_gcls002";
10 
12  ESP_LOGCONFIG(TAG, "Xiaomi GCLS002");
13  LOG_SENSOR(" ", "Temperature", this->temperature_);
14  LOG_SENSOR(" ", "Moisture", this->moisture_);
15  LOG_SENSOR(" ", "Conductivity", this->conductivity_);
16  LOG_SENSOR(" ", "Illuminance", this->illuminance_);
17 }
18 
20  if (device.address_uint64() != this->address_) {
21  ESP_LOGVV(TAG, "parse_device(): unknown MAC address.");
22  return false;
23  }
24  ESP_LOGVV(TAG, "parse_device(): MAC address %s found.", device.address_str().c_str());
25 
26  bool success = false;
27  for (auto &service_data : device.get_service_datas()) {
28  auto res = xiaomi_ble::parse_xiaomi_header(service_data);
29  if (!res.has_value()) {
30  continue;
31  }
32  if (res->is_duplicate) {
33  continue;
34  }
35  if (res->has_encryption) {
36  ESP_LOGVV(TAG, "parse_device(): payload decryption is currently not supported on this device.");
37  continue;
38  }
39  if (!(xiaomi_ble::parse_xiaomi_message(service_data.data, *res))) {
40  continue;
41  }
42  if (!(xiaomi_ble::report_xiaomi_results(res, device.address_str()))) {
43  continue;
44  }
45  if (res->temperature.has_value() && this->temperature_ != nullptr)
46  this->temperature_->publish_state(*res->temperature);
47  if (res->moisture.has_value() && this->moisture_ != nullptr)
48  this->moisture_->publish_state(*res->moisture);
49  if (res->conductivity.has_value() && this->conductivity_ != nullptr)
50  this->conductivity_->publish_state(*res->conductivity);
51  if (res->illuminance.has_value() && this->illuminance_ != nullptr)
52  this->illuminance_->publish_state(*res->illuminance);
53  success = true;
54  }
55 
56  return success;
57 }
58 
59 } // namespace xiaomi_gcls002
60 } // namespace esphome
61 
62 #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