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

* add device info to canary sensors * Update test_sensor.py * Update sensor.py * Update sensor.py * Update test_sensor.py * Create const.py * Update sensor.py * Update test_sensor.py * Update sensor.py * Update test_sensor.py * Update camera.py * Update camera.py * Update sensor.py * Update camera.py * Update camera.py
17 lines
313 B
Python
17 lines
313 B
Python
"""Constants for the Canary integration."""
|
|
|
|
DOMAIN = "canary"
|
|
|
|
MANUFACTURER = "Canary Connect, Inc"
|
|
|
|
# Configuration
|
|
CONF_FFMPEG_ARGUMENTS = "ffmpeg_arguments"
|
|
|
|
# Data
|
|
DATA_CANARY = "canary"
|
|
DATA_UNDO_UPDATE_LISTENER = "undo_update_listener"
|
|
|
|
# Defaults
|
|
DEFAULT_FFMPEG_ARGUMENTS = "-pred 1"
|
|
DEFAULT_TIMEOUT = 10
|