ESPHome 2026.10.0-dev
Loading...
Searching...
No Matches
ble.h
Go to the documentation of this file.
1#pragma once
2
3#include "esphome/core/defines.h" // Must be included before conditional includes
4
5#include "ble_uuid.h"
6#include "ble_scan_result.h"
7#ifdef USE_ESP32_BLE_ADVERTISING
8#include "ble_advertising.h"
9#endif
10
11#include <functional>
12#include <span>
13
17
18#include "ble_event.h"
21
22#ifdef USE_ESP32
23
24#include <esp_gap_ble_api.h>
25#include <esp_gattc_api.h>
26#include <esp_gatts_api.h>
27
28namespace esphome::esp32_ble {
29
30// Maximum size of the BLE event queue
31// Increased to absorb the ring buffer capacity from esp32_ble_tracker
32#ifdef USE_PSRAM
33static constexpr uint8_t MAX_BLE_QUEUE_SIZE = 100; // 64 + 36 (ring buffer size with PSRAM)
34#else
35static constexpr uint8_t MAX_BLE_QUEUE_SIZE = 88; // 64 + 24 (ring buffer size without PSRAM)
36#endif
37
38inline uint64_t ble_addr_to_uint64(const esp_bd_addr_t address) {
39 uint64_t u = 0;
40 u |= uint64_t(address[0] & 0xFF) << 40;
41 u |= uint64_t(address[1] & 0xFF) << 32;
42 u |= uint64_t(address[2] & 0xFF) << 24;
43 u |= uint64_t(address[3] & 0xFF) << 16;
44 u |= uint64_t(address[4] & 0xFF) << 8;
45 u |= uint64_t(address[5] & 0xFF) << 0;
46 return u;
47}
48
49// NOLINTNEXTLINE(modernize-use-using)
50typedef struct {
53 uint16_t mtu;
55
57 IO_CAP_OUT = ESP_IO_CAP_OUT,
58 IO_CAP_IO = ESP_IO_CAP_IO,
59 IO_CAP_IN = ESP_IO_CAP_IN,
60 IO_CAP_NONE = ESP_IO_CAP_NONE,
61 IO_CAP_KBDISP = ESP_IO_CAP_KBDISP,
62};
63
64#ifdef ESPHOME_ESP32_BLE_EXTENDED_AUTH_PARAMS
66 AUTH_REQ_NO_BOND = ESP_LE_AUTH_NO_BOND,
67 AUTH_REQ_BOND = ESP_LE_AUTH_BOND,
68 AUTH_REQ_MITM = ESP_LE_AUTH_REQ_MITM,
69 AUTH_REQ_BOND_MITM = ESP_LE_AUTH_REQ_BOND_MITM,
70 AUTH_REQ_SC_ONLY = ESP_LE_AUTH_REQ_SC_ONLY,
71 AUTH_REQ_SC_BOND = ESP_LE_AUTH_REQ_SC_BOND,
72 AUTH_REQ_SC_MITM = ESP_LE_AUTH_REQ_SC_MITM,
73 AUTH_REQ_SC_MITM_BOND = ESP_LE_AUTH_REQ_SC_MITM_BOND,
74};
75#endif
76
89
90class ESP32BLE final : public Component {
91 public:
92 void set_io_capability(IoCapability io_capability) { this->io_cap_ = (esp_ble_io_cap_t) io_capability; }
93
94#ifdef ESPHOME_ESP32_BLE_EXTENDED_AUTH_PARAMS
95 void set_max_key_size(uint8_t key_size) { this->max_key_size_ = key_size; }
96 void set_min_key_size(uint8_t key_size) { this->min_key_size_ = key_size; }
97 void set_auth_req(AuthReqMode req) { this->auth_req_mode_ = (esp_ble_auth_req_t) req; }
98#endif
99
100 void set_advertising_cycle_time(uint32_t advertising_cycle_time) {
101 this->advertising_cycle_time_ = advertising_cycle_time;
102 }
103 uint32_t get_advertising_cycle_time() const { return this->advertising_cycle_time_; }
104
105 void enable();
106 void disable();
107 ESPHOME_ALWAYS_INLINE bool is_active() { return this->state_ == BLE_COMPONENT_STATE_ACTIVE; }
108 void setup() override;
109 void loop() override;
110 void dump_config() override;
112 void get_mac_msb_first(uint8_t out[MAC_ADDRESS_SIZE]) const;
113 float get_setup_priority() const override;
114 void set_name(const char *name) { this->name_ = name; }
115
116#ifdef USE_ESP32_BLE_ADVERTISING
123 void advertising_start();
125 void advertising_stop();
127 void advertising_refresh();
128 void advertising_set_service_data(const std::vector<uint8_t> &data);
129 void advertising_set_manufacturer_data(const std::vector<uint8_t> &data);
130 void advertising_set_appearance(uint16_t appearance) { this->appearance_ = appearance; }
131 void advertising_set_service_data_and_name(std::span<const uint8_t> data, bool include_name);
134 void advertising_register_raw_advertisement_callback(std::function<void(bool)> &&callback);
135#endif
136
137#ifdef ESPHOME_ESP32_BLE_GAP_EVENT_HANDLER_COUNT
138 template<typename F> void add_gap_event_callback(F &&callback) {
139 this->gap_event_callbacks_.add(std::forward<F>(callback));
140 }
141#endif
142#ifdef ESPHOME_ESP32_BLE_GAP_SCAN_EVENT_HANDLER_COUNT
143 template<typename F> void add_gap_scan_event_callback(F &&callback) {
144 this->gap_scan_event_callbacks_.add(std::forward<F>(callback));
145 }
146#endif
147#if defined(USE_ESP32_BLE_CLIENT) && defined(ESPHOME_ESP32_BLE_GATTC_EVENT_HANDLER_COUNT)
148 template<typename F> void add_gattc_event_callback(F &&callback) {
149 this->gattc_event_callbacks_.add(std::forward<F>(callback));
150 }
151#endif
152#if defined(USE_ESP32_BLE_SERVER) && defined(ESPHOME_ESP32_BLE_GATTS_EVENT_HANDLER_COUNT)
153 template<typename F> void add_gatts_event_callback(F &&callback) {
154 this->gatts_event_callbacks_.add(std::forward<F>(callback));
155 }
156#endif
157#ifdef ESPHOME_ESP32_BLE_BLE_STATUS_EVENT_HANDLER_COUNT
158 template<typename F> void add_ble_status_event_callback(F &&callback) {
159 this->ble_status_event_callbacks_.add(std::forward<F>(callback));
160 }
161#endif
162 void set_enable_on_boot(bool enable_on_boot) { this->enable_on_boot_ = enable_on_boot; }
163
164 protected:
165#ifdef USE_ESP32_BLE_SERVER
166 static void gatts_event_handler(esp_gatts_cb_event_t event, esp_gatt_if_t gatts_if, esp_ble_gatts_cb_param_t *param);
167#endif
168#ifdef USE_ESP32_BLE_CLIENT
169 static void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if, esp_ble_gattc_cb_param_t *param);
170#endif
171 static void gap_event_handler(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t *param);
172
173 // Handle DISABLE and ENABLE transitions when not in the ACTIVE state.
174 // Other non-ACTIVE states (e.g. OFF, DISABLED) are currently treated as no-ops.
175 void __attribute__((noinline)) loop_handle_state_transition_not_active_();
176
177 bool ble_setup_();
178 bool ble_dismantle_();
179 bool ble_pre_setup_();
180#ifdef USE_ESP32_BLE_ADVERTISING
181 void advertising_init_();
182#endif
183
184 // BLE uses the core wake_loop_threadsafe() mechanism to wake the main event loop
185 // from BLE tasks. This enables low-latency (~12μs) event processing instead of
186 // waiting for select() timeout (0-16ms). The wake socket is shared with other
187 // components that need this functionality.
188
189 private:
190 template<typename... Args> friend void enqueue_ble_event(Args... args);
191
192#ifdef ESPHOME_ESP32_BLE_GAP_EVENT_HANDLER_COUNT
193 StaticCallbackManager<ESPHOME_ESP32_BLE_GAP_EVENT_HANDLER_COUNT,
194 void(esp_gap_ble_cb_event_t, esp_ble_gap_cb_param_t *)>
195 gap_event_callbacks_;
196#endif
197#ifdef ESPHOME_ESP32_BLE_GAP_SCAN_EVENT_HANDLER_COUNT
198 StaticCallbackManager<ESPHOME_ESP32_BLE_GAP_SCAN_EVENT_HANDLER_COUNT, void(const BLEScanResult &)>
199 gap_scan_event_callbacks_;
200#endif
201#if defined(USE_ESP32_BLE_CLIENT) && defined(ESPHOME_ESP32_BLE_GATTC_EVENT_HANDLER_COUNT)
202 StaticCallbackManager<ESPHOME_ESP32_BLE_GATTC_EVENT_HANDLER_COUNT,
203 void(esp_gattc_cb_event_t, esp_gatt_if_t, esp_ble_gattc_cb_param_t *)>
204 gattc_event_callbacks_;
205#endif
206#if defined(USE_ESP32_BLE_SERVER) && defined(ESPHOME_ESP32_BLE_GATTS_EVENT_HANDLER_COUNT)
207 StaticCallbackManager<ESPHOME_ESP32_BLE_GATTS_EVENT_HANDLER_COUNT,
208 void(esp_gatts_cb_event_t, esp_gatt_if_t, esp_ble_gatts_cb_param_t *)>
209 gatts_event_callbacks_;
210#endif
211#ifdef ESPHOME_ESP32_BLE_BLE_STATUS_EVENT_HANDLER_COUNT
212 StaticCallbackManager<ESPHOME_ESP32_BLE_BLE_STATUS_EVENT_HANDLER_COUNT, void()> ble_status_event_callbacks_;
213#endif
214
215 // Large objects (size depends on template parameters, but typically aligned to 4 bytes)
217 // Pool sized to queue capacity (SIZE-1) because LockFreeQueue<T,N> is a ring
218 // buffer that holds N-1 elements (one slot distinguishes full from empty).
219 // This guarantees allocate() returns nullptr before push() can fail, which:
220 // 1. Prevents leaking a pool slot (the Nth allocate succeeds but push fails)
221 // 2. Avoids needing release() on the producer path after a failed push(),
222 // preserving the SPSC contract on the pool's internal free list
223 esphome::EventPool<BLEEvent, MAX_BLE_QUEUE_SIZE - 1> ble_event_pool_;
224
225 // 4-byte aligned members
226#ifdef USE_ESP32_BLE_ADVERTISING
227 BLEAdvertising *advertising_{}; // 4 bytes (pointer)
228#endif
229 const char *name_{nullptr}; // 4 bytes (pointer to string literal in flash)
230 esp_ble_io_cap_t io_cap_{ESP_IO_CAP_NONE}; // 4 bytes (enum)
231 uint32_t advertising_cycle_time_{}; // 4 bytes
232
233 // 2-byte aligned members
234 uint16_t appearance_{0}; // 2 bytes
235
236 // 1-byte aligned members (grouped together to minimize padding)
237 BLEComponentState state_{BLE_COMPONENT_STATE_OFF}; // 1 byte (uint8_t enum)
238 bool enable_on_boot_{}; // 1 byte
239#ifdef USE_ESP32_BLE_ADVERTISING
240 uint8_t advertising_ref_count_{0}; // 1 byte, number of components requesting advertising
241#endif
242
243#ifdef ESPHOME_ESP32_BLE_EXTENDED_AUTH_PARAMS
244 optional<esp_ble_auth_req_t> auth_req_mode_;
245
246 uint8_t max_key_size_{0}; // range is 7..16, 0 is unset
247 uint8_t min_key_size_{0}; // range is 7..16, 0 is unset
248#endif
249};
250
251// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
252extern ESP32BLE *global_ble;
253
254template<typename... Ts> class BLEEnabledCondition final : public Condition<Ts...> {
255 public:
256 bool check(const Ts &...x) override { return global_ble != nullptr && global_ble->is_active(); }
257};
258
259template<typename... Ts> class BLEEnableAction final : public Action<Ts...> {
260 public:
261 void play(const Ts &...x) override {
262 if (global_ble != nullptr)
264 }
265};
266
267template<typename... Ts> class BLEDisableAction final : public Action<Ts...> {
268 public:
269 void play(const Ts &...x) override {
270 if (global_ble != nullptr)
272 }
273};
274
275} // namespace esphome::esp32_ble
276
277#endif
uint8_t address
Definition bl0906.h:4
Base class for all automation conditions.
Definition automation.h:438
CallbackManager backed by StaticVector for compile-time-known callback counts.
Definition helpers.h:1797
void play(const Ts &...x) override
Definition ble.h:269
void play(const Ts &...x) override
Definition ble.h:261
bool check(const Ts &...x) override
Definition ble.h:256
void add_gatts_event_callback(F &&callback)
Definition ble.h:153
void advertising_set_manufacturer_data(const std::vector< uint8_t > &data)
Definition ble.cpp:131
void get_mac_msb_first(uint8_t out[MAC_ADDRESS_SIZE]) const
Adapter MAC in printable (MSB-first) order; all-zero until the stack is up.
Definition ble.cpp:720
void add_gap_scan_event_callback(F &&callback)
Definition ble.h:143
void set_enable_on_boot(bool enable_on_boot)
Definition ble.h:162
static void gap_event_handler(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t *param)
Definition ble.cpp:646
void set_auth_req(AuthReqMode req)
Definition ble.h:97
void add_gap_event_callback(F &&callback)
Definition ble.h:138
void set_name(const char *name)
Definition ble.h:114
static void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if, esp_ble_gattc_cb_param_t *param)
Definition ble.cpp:712
void advertising_start()
Request advertising on behalf of a component.
Definition ble.cpp:101
void advertising_refresh()
Apply the current payload and request count: advertise while requested, otherwise stop.
Definition ble.cpp:114
friend void enqueue_ble_event(Args... args)
Definition ble.cpp:619
void __attribute__((noinline)) loop_handle_state_transition_not_active_()
void advertising_register_raw_advertisement_callback(std::function< void(bool)> &&callback)
Definition ble.cpp:159
void advertising_set_service_data_and_name(std::span< const uint8_t > data, bool include_name)
Definition ble.cpp:137
void set_advertising_cycle_time(uint32_t advertising_cycle_time)
Definition ble.h:100
void advertising_add_service_uuid(ESPBTUUID uuid)
Definition ble.cpp:164
void dump_config() override
Definition ble.cpp:733
void loop() override
Definition ble.cpp:454
static void gatts_event_handler(esp_gatts_cb_event_t event, esp_gatt_if_t gatts_if, esp_ble_gatts_cb_param_t *param)
Definition ble.cpp:703
void add_ble_status_event_callback(F &&callback)
Definition ble.h:158
void set_max_key_size(uint8_t key_size)
Definition ble.h:95
void advertising_set_service_data(const std::vector< uint8_t > &data)
Definition ble.cpp:125
void set_io_capability(IoCapability io_capability)
Definition ble.h:92
void advertising_set_appearance(uint16_t appearance)
Definition ble.h:130
ESPHOME_ALWAYS_INLINE bool is_active()
Definition ble.h:107
float get_setup_priority() const override
Definition ble.cpp:731
void add_gattc_event_callback(F &&callback)
Definition ble.h:148
void setup() override
Definition ble.cpp:72
void set_min_key_size(uint8_t key_size)
Definition ble.h:96
void advertising_stop()
Release a request made with advertising_start(); advertising stops at the last release.
Definition ble.cpp:107
uint32_t get_advertising_cycle_time() const
Definition ble.h:103
void advertising_remove_service_uuid(ESPBTUUID uuid)
Definition ble.cpp:170
ESP32BLE * global_ble
Definition ble.cpp:816
@ BLE_COMPONENT_STATE_DISABLE
BLE should be disabled on next loop.
Definition ble.h:81
@ BLE_COMPONENT_STATE_OFF
Nothing has been initialized yet.
Definition ble.h:79
@ BLE_COMPONENT_STATE_ENABLE
BLE should be enabled on next loop.
Definition ble.h:85
@ BLE_COMPONENT_STATE_DISABLED
BLE is disabled.
Definition ble.h:83
@ BLE_COMPONENT_STATE_ACTIVE
BLE is active.
Definition ble.h:87
uint64_t ble_addr_to_uint64(const esp_bd_addr_t address)
Definition ble.h:38
@ AUTH_REQ_SC_MITM_BOND
Definition ble.h:73
@ AUTH_REQ_BOND_MITM
Definition ble.h:69
static void uint32_t
uint16_t x
Definition tt21100.cpp:5