1
0
mirror of https://github.com/esphome/esphome.git synced 2026-02-08 08:41:59 +00:00

[esp32_ble] Deprecate ESPBTUUID::to_string() in favor of heap-free to_str() (#13376)

This commit is contained in:
J. Nick Koston
2026-01-19 17:37:03 -10:00
committed by GitHub
parent b5fe271d6b
commit 62b6c9bf7c

View File

@@ -46,6 +46,8 @@ class ESPBTUUID {
esp_bt_uuid_t get_uuid() const;
// Remove before 2026.8.0
ESPDEPRECATED("Use to_str() instead. Removed in 2026.8.0", "2026.2.0")
std::string to_string() const;
const char *to_str(std::span<char, UUID_STR_LEN> output) const;