Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.bluetooth.config_flow Namespace Reference

Classes

class  BluetoothConfigFlow
 

Functions

str adapter_display_info (str adapter, AdapterDetails details)
 

Variables

dictionary OPTIONS_FLOW
 
 OPTIONS_SCHEMA
 

Detailed Description

Config flow to configure the Bluetooth integration.

Function Documentation

◆ adapter_display_info()

str homeassistant.components.bluetooth.config_flow.adapter_display_info ( str  adapter,
AdapterDetails  details 
)
Return the adapter display info.

Definition at line 42 of file config_flow.py.

Variable Documentation

◆ OPTIONS_FLOW

dictionary homeassistant.components.bluetooth.config_flow.OPTIONS_FLOW
Initial value:
1 = {
2  "init": SchemaFlowFormStep(OPTIONS_SCHEMA),
3 }

Definition at line 37 of file config_flow.py.

◆ OPTIONS_SCHEMA

homeassistant.components.bluetooth.config_flow.OPTIONS_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_PASSIVE, default=False): bool,
4  }
5 )

Definition at line 32 of file config_flow.py.