#pragma once #include "esphome/components/esp32_ble/ble.h" #include "esphome/core/component.h" #ifdef USE_ESP32 #include #include namespace esphome { namespace esp32_ble_beacon { using esp_ble_ibeacon_head_t = struct { uint8_t flags[3]; uint8_t length; uint8_t type; uint8_t company_id[2]; uint8_t beacon_type[2]; } __attribute__((packed)); using esp_ble_ibeacon_vendor_t = struct { uint8_t proximity_uuid[16]; uint16_t major; uint16_t minor; uint8_t measured_power; } __attribute__((packed)); using esp_ble_ibeacon_t = struct { esp_ble_ibeacon_head_t ibeacon_head; esp_ble_ibeacon_vendor_t ibeacon_vendor; } __attribute__((packed)); using namespace esp32_ble; class ESP32BLEBeacon : public Component, public GAPEventHandler, public Parented { public: explicit ESP32BLEBeacon(const std::array &uuid) : uuid_(uuid) {} void setup() override; void dump_config() override; float get_setup_priority() const override; void set_major(uint16_t major) { this->major_ = major; } void set_minor(uint16_t minor) { this->minor_ = minor; } void set_min_interval(uint16_t val) { this->min_interval_ = val; } void set_max_interval(uint16_t val) { this->max_interval_ = val; } void set_measured_power(int8_t val) { this->measured_power_ = val; } void set_tx_power(esp_power_level_t val) { this->tx_power_ = val; } void gap_event_handler(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t *param) override; protected: void on_advertise_(); std::array uuid_; uint16_t major_{}; uint16_t minor_{}; uint16_t min_interval_{}; uint16_t max_interval_{}; int8_t measured_power_{}; esp_power_level_t tx_power_{}; esp_ble_adv_params_t ble_adv_params_; bool advertising_{false}; }; } // namespace esp32_ble_beacon } // namespace esphome #endif