Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for amcrest component."""
2 
3 DOMAIN = "amcrest"
4 DATA_AMCREST = DOMAIN
5 CAMERAS = "cameras"
6 DEVICES = "devices"
7 
8 BINARY_SENSOR_SCAN_INTERVAL_SECS = 5
9 CAMERA_WEB_SESSION_TIMEOUT = 10
10 COMM_RETRIES = 1
11 COMM_TIMEOUT = 6.05
12 SENSOR_SCAN_INTERVAL_SECS = 10
13 SNAPSHOT_TIMEOUT = 20
14 
15 SERVICE_EVENT = "event"
16 SERVICE_UPDATE = "update"
17 
18 RESOLUTION_LIST = {"high": 0, "low": 1}
19 RESOLUTION_TO_STREAM = {0: "Main", 1: "Extra"}