mirror of
https://github.com/home-assistant/core.git
synced 2025-06-30 09:57:08 +00:00

Co-authored-by: J. Nick Koston <nick@koston.org> Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
10 lines
217 B
Python
10 lines
217 B
Python
"""Constants for the Schlage integration."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
DOMAIN = "schlage"
|
|
LOGGER = logging.getLogger(__package__)
|
|
MANUFACTURER = "Schlage"
|
|
UPDATE_INTERVAL = timedelta(seconds=30)
|