mirror of
https://github.com/home-assistant/core.git
synced 2025-05-17 12:29:16 +00:00
10 lines
260 B
Python
10 lines
260 B
Python
"""Constants for the Android IP Webcam integration."""
|
|
|
|
from datetime import timedelta
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "android_ip_webcam"
|
|
DEFAULT_PORT: Final = 8080
|
|
MOTION_ACTIVE: Final = "motion_active"
|
|
SCAN_INTERVAL: Final = timedelta(seconds=10)
|