* Add config_flow and stream selection to foscam * Simplify config_flow steps * Make debug log entry more useful * Deprecate config and platform schemas * Simplify config loading * Add config flow testing * Remove unneeded CONFIG_SCHEMA deprecation * Improve test coverage * Unload service by tracking loaded entries * Address comment Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
11 lines
158 B
Python
11 lines
158 B
Python
"""Constants for Foscam component."""
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "foscam"
|
|
|
|
CONF_STREAM = "stream"
|
|
|
|
SERVICE_PTZ = "ptz"
|