Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Android IP Webcam integration."""
2 
3 from datetime import timedelta
4 from typing import Final
5 
6 DOMAIN: Final = "android_ip_webcam"
7 DEFAULT_PORT: Final = 8080
8 MOTION_ACTIVE: Final = "motion_active"
9 SCAN_INTERVAL: Final = timedelta(seconds=10)