13 lines
222 B
Python
13 lines
222 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"
|