ESPHome 2026.8.0
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
117 void advertising_start();
118 void advertising_set_service_data(const std::vector<uint8_t> &data);
119 void advertising_set_manufacturer_data(const std::vector<uint8_t> &data);
120 void advertising_set_appearance(uint16_t appearance) { this->appearance_ = appearance; }
121 void advertising_set_service_data_and_name(std::span<const uint8_t> data, bool include_name);
124 void advertising_register_raw_advertisement_callback(std::function<void(bool)> &&callback);
125#endif
126
127#ifdef ESPHOME_ESP32_BLE_GAP_EVENT_HANDLER_COUNT
128 template<typename F> void add_gap_event_callback(F &&callback) {
129 this->gap_event_callbacks_.add(std::forward<F>(callback));
130 }
131#endif
132#ifdef ESPHOME_ESP32_BLE_GAP_SCAN_EVENT_HANDLER_COUNT
133 template<typename F> void add_gap_scan_event_callback(F &&callback) {
134 this->gap_scan_event_callbacks_.add(std::forward<F>(callback));
135 }
136#endif
137#if defined(USE_ESP32_BLE_CLIENT) && defined(ESPHOME_ESP32_BLE_GATTC_EVENT_HANDLER_COUNT)
138 template<typename F> void add_gattc_event_callback(F &&callback) {
139 this->gattc_event_callbacks_.add(std::forward<F>(callback));
140 }
141#endif
142#if defined(USE_ESP32_BLE_SERVER) && defined(ESPHOME_ESP32_BLE_GATTS_EVENT_HANDLER_COUNT)
143 template<typename F> void add_gatts_event_callback(F &&callback) {
144 this->gatts_event_callbacks_.add(std::forward<F>(callback));
145 }
146#endif
147#ifdef ESPHOME_ESP32_BLE_BLE_STATUS_EVENT_HANDLER_COUNT
148 template<typename F> void add_ble_status_event_callback(F &&callback) {
149 this->ble_status_event_callbacks_.add(std::forward<F>(callback));
150 }
151#endif
152 void set_enable_on_boot(bool enable_on_boot) { this->enable_on_boot_ = enable_on_boot; }
153
154 protected:
155#ifdef USE_ESP32_BLE_SERVER
156 static void gatts_event_handler(esp_gatts_cb_event_t event, esp_gatt_if_t gatts_if, esp_ble_gatts_cb_param_t *param);
157#endif
158#ifdef USE_ESP32_BLE_CLIENT
159 static void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if, esp_ble_gattc_cb_param_t *param);
160#endif
161 static void gap_event_handler(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t *param);
162
163 // Handle DISABLE and ENABLE transitions when not in the ACTIVE state.
164 // Other non-ACTIVE states (e.g. OFF, DISABLED) are currently treated as no-ops.
165 void __attribute__((noinline)) loop_handle_state_transition_not_active_();
166
167 bool ble_setup_();
168 bool ble_dismantle_();
169 bool ble_pre_setup_();
170#ifdef USE_ESP32_BLE_ADVERTISING
171 void advertising_init_();
172#endif
173
174 // BLE uses the core wake_loop_threadsafe() mechanism to wake the main event loop
175 // from BLE tasks. This enables low-latency (~12μs) event processing instead of
176 // waiting for select() timeout (0-16ms). The wake socket is shared with other
177 // components that need this functionality.
178
179 private:
180 template<typename... Args> friend void enqueue_ble_event(Args... args);
181
182#ifdef ESPHOME_ESP32_BLE_GAP_EVENT_HANDLER_COUNT
183 StaticCallbackManager<ESPHOME_ESP32_BLE_GAP_EVENT_HANDLER_COUNT,
184 void(esp_gap_ble_cb_event_t, esp_ble_gap_cb_param_t *)>
185 gap_event_callbacks_;
186#endif
187#ifdef ESPHOME_ESP32_BLE_GAP_SCAN_EVENT_HANDLER_COUNT
188 StaticCallbackManager<ESPHOME_ESP32_BLE_GAP_SCAN_EVENT_HANDLER_COUNT, void(const BLEScanResult &)>
189 gap_scan_event_callbacks_;
190#endif
191#if defined(USE_ESP32_BLE_CLIENT) && defined(ESPHOME_ESP32_BLE_GATTC_EVENT_HANDLER_COUNT)
192 StaticCallbackManager<ESPHOME_ESP32_BLE_GATTC_EVENT_HANDLER_COUNT,
193 void(esp_gattc_cb_event_t, esp_gatt_if_t, esp_ble_gattc_cb_param_t *)>
194 gattc_event_callbacks_;
195#endif
196#if defined(USE_ESP32_BLE_SERVER) && defined(ESPHOME_ESP32_BLE_GATTS_EVENT_HANDLER_COUNT)
197 StaticCallbackManager<ESPHOME_ESP32_BLE_GATTS_EVENT_HANDLER_COUNT,
198 void(esp_gatts_cb_event_t, esp_gatt_if_t, esp_ble_gatts_cb_param_t *)>
199 gatts_event_callbacks_;
200#endif
201#ifdef ESPHOME_ESP32_BLE_BLE_STATUS_EVENT_HANDLER_COUNT
202 StaticCallbackManager<ESPHOME_ESP32_BLE_BLE_STATUS_EVENT_HANDLER_COUNT, void()> ble_status_event_callbacks_;
203#endif
204
205 // Large objects (size depends on template parameters, but typically aligned to 4 bytes)
207 // Pool sized to queue capacity (SIZE-1) because LockFreeQueue<T,N> is a ring
208 // buffer that holds N-1 elements (one slot distinguishes full from empty).
209 // This guarantees allocate() returns nullptr before push() can fail, which:
210 // 1. Prevents leaking a pool slot (the Nth allocate succeeds but push fails)
211 // 2. Avoids needing release() on the producer path after a failed push(),
212 // preserving the SPSC contract on the pool's internal free list
213 esphome::EventPool<BLEEvent, MAX_BLE_QUEUE_SIZE - 1> ble_event_pool_;
214
215 // 4-byte aligned members
216#ifdef USE_ESP32_BLE_ADVERTISING
217 BLEAdvertising *advertising_{}; // 4 bytes (pointer)
218#endif
219 const char *name_{nullptr}; // 4 bytes (pointer to string literal in flash)
220 esp_ble_io_cap_t io_cap_{ESP_IO_CAP_NONE}; // 4 bytes (enum)
221 uint32_t advertising_cycle_time_{}; // 4 bytes
222
223 // 2-byte aligned members
224 uint16_t appearance_{0}; // 2 bytes
225
226 // 1-byte aligned members (grouped together to minimize padding)
227 BLEComponentState state_{BLE_COMPONENT_STATE_OFF}; // 1 byte (uint8_t enum)
228 bool enable_on_boot_{}; // 1 byte
229
230#ifdef ESPHOME_ESP32_BLE_EXTENDED_AUTH_PARAMS
231 optional<esp_ble_auth_req_t> auth_req_mode_;
232
233 uint8_t max_key_size_{0}; // range is 7..16, 0 is unset
234 uint8_t min_key_size_{0}; // range is 7..16, 0 is unset
235#endif
236};
237
238// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
239extern ESP32BLE *global_ble;
240
241template<typename... Ts> class BLEEnabledCondition final : public Condition<Ts...> {
242 public:
243 bool check(const Ts &...x) override { return global_ble != nullptr && global_ble->is_active(); }
244};
245
246template<typename... Ts> class BLEEnableAction final : public Action<Ts...> {
247 public:
248 void play(const Ts &...x) override {
249 if (global_ble != nullptr)
251 }
252};
253
254template<typename... Ts> class BLEDisableAction final : public Action<Ts...> {
255 public:
256 void play(const Ts &...x) override {
257 if (global_ble != nullptr)
259 }
260};
261
262} // namespace esphome::esp32_ble
263
264#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:1794
void play(const Ts &...x) override
Definition ble.h:256
void play(const Ts &...x) override
Definition ble.h:248
bool check(const Ts &...x) override
Definition ble.h:243
void add_gatts_event_callback(F &&callback)
Definition ble.h:143
void advertising_set_manufacturer_data(const std::vector< uint8_t > &data)
Definition ble.cpp:114
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:679
void add_gap_scan_event_callback(F &&callback)
Definition ble.h:133
void set_enable_on_boot(bool enable_on_boot)
Definition ble.h:152
static void gap_event_handler(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t *param)
Definition ble.cpp:625
void set_auth_req(AuthReqMode req)
Definition ble.h:97
void add_gap_event_callback(F &&callback)
Definition ble.h:128
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:671
friend void enqueue_ble_event(Args... args)
Definition ble.cpp:598
void __attribute__((noinline)) loop_handle_state_transition_not_active_()
void advertising_register_raw_advertisement_callback(std::function< void(bool)> &&callback)
Definition ble.cpp:142
void advertising_set_service_data_and_name(std::span< const uint8_t > data, bool include_name)
Definition ble.cpp:120
void set_advertising_cycle_time(uint32_t advertising_cycle_time)
Definition ble.h:100
void advertising_add_service_uuid(ESPBTUUID uuid)
Definition ble.cpp:147
void dump_config() override
Definition ble.cpp:692
void loop() override
Definition ble.cpp:437
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:662
void add_ble_status_event_callback(F &&callback)
Definition ble.h:148
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:108
void set_io_capability(IoCapability io_capability)
Definition ble.h:92
void advertising_set_appearance(uint16_t appearance)
Definition ble.h:120
ESPHOME_ALWAYS_INLINE bool is_active()
Definition ble.h:107
float get_setup_priority() const override
Definition ble.cpp:690
void add_gattc_event_callback(F &&callback)
Definition ble.h:138
void setup() override
Definition ble.cpp:72
void set_min_key_size(uint8_t key_size)
Definition ble.h:96
uint32_t get_advertising_cycle_time() const
Definition ble.h:103
void advertising_remove_service_uuid(ESPBTUUID uuid)
Definition ble.cpp:153
ESP32BLE * global_ble
Definition ble.cpp:775
@ 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
const char int const __FlashStringHelper va_list args
Definition log.h:74
static void uint32_t
uint16_t x
Definition tt21100.cpp:5