hass-core/homeassistant/components/fully_kiosk/const.py
Charles Garwood 1e9ede25ad
Add Fully Kiosk Browser integration with initial binary sensor platform (#76737)
Co-authored-by: Franck Nijhof <git@frenck.dev>
2022-08-16 20:08:35 +02:00

13 lines
297 B
Python

"""Constants for the Fully Kiosk Browser integration."""
from __future__ import annotations
from datetime import timedelta
import logging
from typing import Final
DOMAIN: Final = "fully_kiosk"
LOGGER = logging.getLogger(__package__)
UPDATE_INTERVAL = timedelta(seconds=30)
DEFAULT_PORT = 2323