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

Classes

class  BboxDeviceScanner
 

Functions

BboxDeviceScanner|None get_scanner (HomeAssistant hass, ConfigType config)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
string DEFAULT_HOST = "192.168.1.254"
 
 Device = namedtuple("Device", ["mac", "name", "ip", "last_update"])
 
 MIN_TIME_BETWEEN_SCANS = timedelta(seconds=60)
 
 PLATFORM_SCHEMA
 

Detailed Description

Support for French FAI Bouygues Bbox routers.

Function Documentation

◆ get_scanner()

BboxDeviceScanner | None homeassistant.components.bbox.device_tracker.get_scanner ( HomeAssistant  hass,
ConfigType  config 
)
Validate the configuration and return a Bbox scanner.

Definition at line 35 of file device_tracker.py.

Variable Documentation

◆ _LOGGER

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

Definition at line 24 of file device_tracker.py.

◆ DEFAULT_HOST

string homeassistant.components.bbox.device_tracker.DEFAULT_HOST = "192.168.1.254"

Definition at line 26 of file device_tracker.py.

◆ Device

homeassistant.components.bbox.device_tracker.Device = namedtuple("Device", ["mac", "name", "ip", "last_update"])

Definition at line 42 of file device_tracker.py.

◆ MIN_TIME_BETWEEN_SCANS

homeassistant.components.bbox.device_tracker.MIN_TIME_BETWEEN_SCANS = timedelta(seconds=60)

Definition at line 28 of file device_tracker.py.

◆ PLATFORM_SCHEMA

homeassistant.components.bbox.device_tracker.PLATFORM_SCHEMA
Initial value:
1 = DEVICE_TRACKER_PLATFORM_SCHEMA.extend(
2  {vol.Optional(CONF_HOST, default=DEFAULT_HOST): cv.string}
3 )

Definition at line 30 of file device_tracker.py.