Files
core/homeassistant/components/harbor/const.py
T

14 lines
276 B
Python

"""Constants for the Harbor integration."""
from homeassistant.const import Platform
DOMAIN = "harbor"
MANUFACTURER = "Harbor"
MODEL = "Harbor Camera"
PLATFORMS: list[Platform] = [Platform.SENSOR]
CONF_CERT_PEM = "cert_pem"
CONF_KEY_PEM = "key_pem"
CONF_SERIAL = "serial"