Add Fully Kiosk Browser integration with initial binary sensor platform (#76737)
Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
parent
73ad34244e
commit
1e9ede25ad
21 changed files with 762 additions and 0 deletions
13
homeassistant/components/fully_kiosk/const.py
Normal file
13
homeassistant/components/fully_kiosk/const.py
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue