1 """Private BLE Device integration."""
3 from __future__
import annotations
9 PLATFORMS = [Platform.DEVICE_TRACKER, Platform.SENSOR]
13 """Set up tracking of a private bluetooth device from a config entry."""
14 await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
19 """Unload entities for a config entry."""
20 return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
bool async_setup_entry(HomeAssistant hass, ConfigEntry entry)
bool async_unload_entry(HomeAssistant hass, ConfigEntry entry)