mirror of
https://github.com/home-assistant/core.git
synced 2026-05-05 12:24:48 +02:00
6570b413d4
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
22 lines
415 B
Python
22 lines
415 B
Python
"""Constants for the Ubiquiti airOS integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "airos"
|
|
|
|
SCAN_INTERVAL = timedelta(minutes=1)
|
|
|
|
MANUFACTURER = "Ubiquiti"
|
|
|
|
DEFAULT_VERIFY_SSL = False
|
|
DEFAULT_SSL = True
|
|
|
|
SECTION_ADVANCED_SETTINGS = "advanced_settings"
|
|
|
|
# Discovery related
|
|
DEFAULT_USERNAME = "ubnt"
|
|
HOSTNAME = "hostname"
|
|
IP_ADDRESS = "ip_address"
|
|
MAC_ADDRESS = "mac_address"
|
|
DEVICE_NAME = "airOS device"
|