mirror of https://github.com/home-assistant/core
15 lines
424 B
Python
15 lines
424 B
Python
"""Constants for the MELCloud Climate integration."""
|
|
|
|
DOMAIN = "melcloud"
|
|
|
|
CONF_POSITION = "position"
|
|
|
|
ATTR_STATUS = "status"
|
|
ATTR_VANE_HORIZONTAL = "vane_horizontal"
|
|
ATTR_VANE_HORIZONTAL_POSITIONS = "vane_horizontal_positions"
|
|
ATTR_VANE_VERTICAL = "vane_vertical"
|
|
ATTR_VANE_VERTICAL_POSITIONS = "vane_vertical_positions"
|
|
|
|
SERVICE_SET_VANE_HORIZONTAL = "set_vane_horizontal"
|
|
SERVICE_SET_VANE_VERTICAL = "set_vane_vertical"
|