mirror of
https://github.com/home-assistant/core.git
synced 2026-05-19 06:50:15 +01:00
28 lines
538 B
Python
28 lines
538 B
Python
"""Constants for the Axis component."""
|
|
|
|
import logging
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "axis"
|
|
|
|
ATTR_MANUFACTURER = "Axis Communications AB"
|
|
|
|
CONF_STREAM_PROFILE = "stream_profile"
|
|
CONF_VIDEO_SOURCE = "video_source"
|
|
|
|
DEFAULT_EVENTS = True
|
|
DEFAULT_STREAM_PROFILE = "No stream profile"
|
|
DEFAULT_TRIGGER_TIME = 0
|
|
DEFAULT_VIDEO_SOURCE = "No video source"
|
|
|
|
PLATFORMS = [
|
|
Platform.BINARY_SENSOR,
|
|
Platform.CAMERA,
|
|
Platform.EVENT,
|
|
Platform.LIGHT,
|
|
Platform.SWITCH,
|
|
]
|