mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 19:54:14 +01:00
66 lines
2 KiB
C++
66 lines
2 KiB
C++
#include "xiaomi_gcls002.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
namespace esphome {
|
|
namespace xiaomi_gcls002 {
|
|
|
|
static const char *TAG = "xiaomi_gcls002";
|
|
|
|
void XiaomiGCLS002::dump_config() {
|
|
ESP_LOGCONFIG(TAG, "Xiaomi GCLS002");
|
|
LOG_SENSOR(" ", "Temperature", this->temperature_);
|
|
LOG_SENSOR(" ", "Moisture", this->moisture_);
|
|
LOG_SENSOR(" ", "Conductivity", this->conductivity_);
|
|
LOG_SENSOR(" ", "Illuminance", this->illuminance_);
|
|
}
|
|
|
|
bool XiaomiGCLS002::parse_device(const esp32_ble_tracker::ESPBTDevice &device) {
|
|
if (device.address_uint64() != this->address_) {
|
|
ESP_LOGVV(TAG, "parse_device(): unknown MAC address.");
|
|
return false;
|
|
}
|
|
ESP_LOGVV(TAG, "parse_device(): MAC address %s found.", device.address_str().c_str());
|
|
|
|
bool success = false;
|
|
for (auto &service_data : device.get_service_datas()) {
|
|
auto res = xiaomi_ble::parse_xiaomi_header(service_data);
|
|
if (!res.has_value()) {
|
|
continue;
|
|
}
|
|
if (res->is_duplicate) {
|
|
continue;
|
|
}
|
|
if (res->has_encryption) {
|
|
ESP_LOGVV(TAG, "parse_device(): payload decryption is currently not supported on this device.");
|
|
continue;
|
|
}
|
|
if (!(xiaomi_ble::parse_xiaomi_message(service_data.data, *res))) {
|
|
continue;
|
|
}
|
|
if (!(xiaomi_ble::report_xiaomi_results(res, device.address_str()))) {
|
|
continue;
|
|
}
|
|
if (res->temperature.has_value() && this->temperature_ != nullptr)
|
|
this->temperature_->publish_state(*res->temperature);
|
|
if (res->moisture.has_value() && this->moisture_ != nullptr)
|
|
this->moisture_->publish_state(*res->moisture);
|
|
if (res->conductivity.has_value() && this->conductivity_ != nullptr)
|
|
this->conductivity_->publish_state(*res->conductivity);
|
|
if (res->illuminance.has_value() && this->illuminance_ != nullptr)
|
|
this->illuminance_->publish_state(*res->illuminance);
|
|
success = true;
|
|
}
|
|
|
|
if (!success) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
} // namespace xiaomi_gcls002
|
|
} // namespace esphome
|
|
|
|
#endif
|