mirror of
https://github.com/home-assistant/core.git
synced 2025-06-25 07:27:08 +00:00
15 lines
232 B
Python
15 lines
232 B
Python
"""Constants for the Gree Climate integration."""
|
|
|
|
DOMAIN = "gree"
|
|
COORDINATOR = "coordinator"
|
|
|
|
FAN_MEDIUM_LOW = "medium low"
|
|
FAN_MEDIUM_HIGH = "medium high"
|
|
|
|
MIN_TEMP = 16
|
|
MAX_TEMP = 30
|
|
|
|
MAX_ERRORS = 2
|
|
|
|
TARGET_TEMPERATURE_STEP = 1
|