mirror of
https://github.com/home-assistant/core.git
synced 2025-12-21 11:30:03 +00:00
27 lines
470 B
Python
27 lines
470 B
Python
"""Constants for Foscam component."""
|
|
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "foscam"
|
|
|
|
CONF_RTSP_PORT = "rtsp_port"
|
|
CONF_STREAM = "stream"
|
|
|
|
SERVICE_PTZ = "ptz"
|
|
SERVICE_PTZ_PRESET = "ptz_preset"
|
|
|
|
SUPPORTED_SWITCHES = [
|
|
"flip_switch",
|
|
"mirror_switch",
|
|
"ir_switch",
|
|
"sleep_switch",
|
|
"white_light_switch",
|
|
"siren_alarm_switch",
|
|
"turn_off_volume_switch",
|
|
"light_status_switch",
|
|
"hdr_switch",
|
|
"wdr_switch",
|
|
]
|