mirror of
https://github.com/home-assistant/core.git
synced 2026-08-06 13:26:29 +01:00
25 lines
378 B
Python
25 lines
378 B
Python
"""Constants for the Midea integration."""
|
|
|
|
from enum import IntEnum
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "midea"
|
|
|
|
|
|
CONF_KEY = "key"
|
|
CONF_SUBTYPE = "subtype"
|
|
CONF_ACCOUNT = "account"
|
|
CONF_SERVER = "server"
|
|
|
|
|
|
class FanSpeed(IntEnum):
|
|
"""FanSpeed reference values."""
|
|
|
|
LOW = 20
|
|
MEDIUM = 40
|
|
HIGH = 60
|
|
FULL_SPEED = 80
|
|
AUTO = 100
|