mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 01:38:02 +00:00

* Config flow for doorbird * Discoverable via zeroconf * Fix zeroconf test * add missing return * Add a test for legacy over ride url (will go away when refactored to cloud hooks) * Update homeassistant/components/doorbird/__init__.py Co-Authored-By: Paulus Schoutsen <paulus@home-assistant.io> * without getting the hooks its not so useful * Update homeassistant/components/doorbird/config_flow.py Co-Authored-By: Paulus Schoutsen <paulus@home-assistant.io> * fix copy pasta * remove identifiers since its in connections * self review fixes Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
18 lines
535 B
Python
18 lines
535 B
Python
"""The DoorBird integration constants."""
|
|
|
|
|
|
DOMAIN = "doorbird"
|
|
PLATFORMS = ["switch", "camera"]
|
|
DOOR_STATION = "door_station"
|
|
DOOR_STATION_INFO = "door_station_info"
|
|
CONF_EVENTS = "events"
|
|
MANUFACTURER = "Bird Home Automation Group"
|
|
DOORBIRD_OUI = "1CCAE3"
|
|
|
|
DOORBIRD_INFO_KEY_FIRMWARE = "FIRMWARE"
|
|
DOORBIRD_INFO_KEY_BUILD_NUMBER = "BUILD_NUMBER"
|
|
DOORBIRD_INFO_KEY_DEVICE_TYPE = "DEVICE-TYPE"
|
|
DOORBIRD_INFO_KEY_RELAYS = "RELAYS"
|
|
DOORBIRD_INFO_KEY_PRIMARY_MAC_ADDR = "PRIMARY_MAC_ADDR"
|
|
DOORBIRD_INFO_KEY_WIFI_MAC_ADDR = "WIFI_MAC_ADDR"
|