Add Fully Kiosk Browser integration with initial binary sensor platform (#76737)

Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
Charles Garwood 2022-08-16 14:08:35 -04:00 committed by GitHub
parent 73ad34244e
commit 1e9ede25ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 762 additions and 0 deletions

View file

@ -0,0 +1,13 @@
"""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