mirror of
https://github.com/home-assistant/core.git
synced 2026-09-07 22:20:07 +01:00
14 lines
356 B
Python
14 lines
356 B
Python
"""Constants for the NexBlue integration."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "nexblue"
|
|
CONF_REFRESH_TOKEN = "refresh_token"
|
|
DEFAULT_API_URL = "https://api.nexblue.com/third_party"
|
|
LOGGER = logging.getLogger(__package__)
|
|
PLATFORMS = [Platform.SENSOR]
|
|
UPDATE_INTERVAL = timedelta(minutes=1)
|