* Add filter and error code support to CoolMastetNet * Create separate entities * coolmaster swing_mode support * Changed default to False * Raise HomeAssistantError * Add tests for init and climate * Fixed bad merge * Catch only ValueError
11 lines
225 B
Python
11 lines
225 B
Python
"""Constants for the Coolmaster integration."""
|
|
|
|
DATA_INFO = "info"
|
|
DATA_COORDINATOR = "coordinator"
|
|
|
|
DOMAIN = "coolmaster"
|
|
|
|
DEFAULT_PORT = 10102
|
|
|
|
CONF_SUPPORTED_MODES = "supported_modes"
|
|
CONF_SWING_SUPPORT = "swing_support"
|