Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.quantum_gateway.device_tracker Namespace Reference

Classes

class  QuantumGatewayDeviceScanner
 

Functions

QuantumGatewayDeviceScanner|None get_scanner (HomeAssistant hass, ConfigType config)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
string DEFAULT_HOST = "myfiosgateway.com"
 
 PLATFORM_SCHEMA
 

Detailed Description

Support for Verizon FiOS Quantum Gateways.

Function Documentation

◆ get_scanner()

QuantumGatewayDeviceScanner | None homeassistant.components.quantum_gateway.device_tracker.get_scanner ( HomeAssistant  hass,
ConfigType   config 
)
Validate the configuration and return a Quantum Gateway scanner.

Definition at line 34 of file device_tracker.py.

Variable Documentation

◆ _LOGGER

homeassistant.components.quantum_gateway.device_tracker._LOGGER = logging.getLogger(__name__)
private

Definition at line 21 of file device_tracker.py.

◆ DEFAULT_HOST

string homeassistant.components.quantum_gateway.device_tracker.DEFAULT_HOST = "myfiosgateway.com"

Definition at line 23 of file device_tracker.py.

◆ PLATFORM_SCHEMA

homeassistant.components.quantum_gateway.device_tracker.PLATFORM_SCHEMA
Initial value:
1 = DEVICE_TRACKER_PLATFORM_SCHEMA.extend(
2  {
3  vol.Optional(CONF_HOST, default=DEFAULT_HOST): cv.string,
4  vol.Optional(CONF_SSL, default=True): cv.boolean,
5  vol.Required(CONF_PASSWORD): cv.string,
6  }
7 )

Definition at line 25 of file device_tracker.py.