Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Axis component."""
2 
3 import logging
4 
5 from homeassistant.const import Platform
6 
7 LOGGER = logging.getLogger(__package__)
8 
9 DOMAIN = "axis"
10 
11 ATTR_MANUFACTURER = "Axis Communications AB"
12 
13 CONF_STREAM_PROFILE = "stream_profile"
14 CONF_VIDEO_SOURCE = "video_source"
15 
16 DEFAULT_EVENTS = True
17 DEFAULT_STREAM_PROFILE = "No stream profile"
18 DEFAULT_TRIGGER_TIME = 0
19 DEFAULT_VIDEO_SOURCE = "No video source"
20 
21 PLATFORMS = [Platform.BINARY_SENSOR, Platform.CAMERA, Platform.LIGHT, Platform.SWITCH]