From a6d882de4a5836387fce497150a3b93283afb720 Mon Sep 17 00:00:00 2001 From: Sebastian Muszynski Date: Mon, 21 Jul 2025 18:33:07 +0200 Subject: [PATCH] Fix ble_client build issue (#70) --- components/votronic_ble/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/components/votronic_ble/__init__.py b/components/votronic_ble/__init__.py index 17477a6..4c87422 100644 --- a/components/votronic_ble/__init__.py +++ b/components/votronic_ble/__init__.py @@ -40,4 +40,5 @@ async def to_code(config): await cg.register_component(var, config) await ble_client.register_ble_node(var, config) + cg.add_define("USE_ESP32_BLE_DEVICE") cg.add(var.set_throttle(config[CONF_THROTTLE]))