mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
12 lines
346 B
Python
12 lines
346 B
Python
import esphome.codegen as cg
|
|
|
|
from esphome.components import esp32_ble_tracker
|
|
|
|
AUTO_LOAD = ["esp32_ble_tracker"]
|
|
CODEOWNERS = ["@jesserockz"]
|
|
DEPENDENCIES = ["esp32"]
|
|
|
|
esp32_ble_client_ns = cg.esphome_ns.namespace("esp32_ble_client")
|
|
BLEClientBase = esp32_ble_client_ns.class_(
|
|
"BLEClientBase", esp32_ble_tracker.ESPBTClient, cg.Component
|
|
)
|