#pragma once #include "esphome/core/component.h" #include "esphome/components/mqtt/custom_mqtt_device.h" #include "BleFingerprintCollection.h" // #include "esphome/components/nimble_distance_custom/nimble_distance_custom.h" namespace esphome { namespace esp32_presense { class ESP32Presense : public mqtt::CustomMQTTDevice // public nimble_distance_custom::NimbleDistanceCustomComponent { protected: std::string room_; BleFingerprint *ble_fingerprint = NULL; bool sendTelemetry( unsigned int totalSeen, unsigned int totalFpSeen, unsigned int totalFpQueried, unsigned int totalFpReported, unsigned int count ); public: void setup(); void loop(); void reportLoop(); // void on_result(nimble_distance_custom::NimbleDistanceCustomResult&) override; void set_room(std::string room) { room_ = room; } //void set_base_topic(std::string base_topic) { base_topic_ = base_topic; } }; } // namespace esp32_nimble_tracker } // namespace esphome