12 lines
293 B
Python
12 lines
293 B
Python
"""Constants for the GREE Controller Home Assistant integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "gree_controller"
|
|
PLATFORMS = [Platform.CLIMATE]
|
|
|
|
CONF_URL = "url"
|
|
CONF_TOKEN = "token"
|
|
ENTITY_MAP_FILE = "gree_controller_entities.json"
|
|
DEFAULT_SCAN_INTERVAL_SECONDS = 10
|