Expose climate constants at the top level (#78018)
* Expose climate constants at the top level * Add new climate enums * Add new climate enums * Import new enums * Adjust ClimateEntity * Adjust pylint * Fix mypy * Revert "Fix mypy" This reverts commitpull/78145/head3dbe2fab01
. * Revert "Adjust pylint" This reverts commitb19b085b22
. * Revert "Adjust ClimateEntity" This reverts commit6a822c58f1
. * Revert "Import new enums" This reverts commit7d70007c60
. * Revert "Add new climate enums" This reverts commitdcd7716106
. * Revert "Add new climate enums" This reverts commita9aaa08a1c
.
parent
6a41a631db
commit
7a3ca8278d
|
@ -55,11 +55,29 @@ from .const import ( # noqa: F401
|
|||
ATTR_TARGET_TEMP_LOW,
|
||||
ATTR_TARGET_TEMP_STEP,
|
||||
DOMAIN,
|
||||
FAN_AUTO,
|
||||
FAN_DIFFUSE,
|
||||
FAN_FOCUS,
|
||||
FAN_HIGH,
|
||||
FAN_LOW,
|
||||
FAN_MEDIUM,
|
||||
FAN_MIDDLE,
|
||||
FAN_OFF,
|
||||
FAN_ON,
|
||||
FAN_TOP,
|
||||
HVAC_MODE_COOL,
|
||||
HVAC_MODE_HEAT,
|
||||
HVAC_MODE_HEAT_COOL,
|
||||
HVAC_MODE_OFF,
|
||||
HVAC_MODES,
|
||||
PRESET_ACTIVITY,
|
||||
PRESET_AWAY,
|
||||
PRESET_BOOST,
|
||||
PRESET_COMFORT,
|
||||
PRESET_ECO,
|
||||
PRESET_HOME,
|
||||
PRESET_NONE,
|
||||
PRESET_SLEEP,
|
||||
SERVICE_SET_AUX_HEAT,
|
||||
SERVICE_SET_FAN_MODE,
|
||||
SERVICE_SET_HUMIDITY,
|
||||
|
@ -74,6 +92,11 @@ from .const import ( # noqa: F401
|
|||
SUPPORT_TARGET_HUMIDITY,
|
||||
SUPPORT_TARGET_TEMPERATURE,
|
||||
SUPPORT_TARGET_TEMPERATURE_RANGE,
|
||||
SWING_BOTH,
|
||||
SWING_HORIZONTAL,
|
||||
SWING_OFF,
|
||||
SWING_ON,
|
||||
SWING_VERTICAL,
|
||||
ClimateEntityFeature,
|
||||
HVACAction,
|
||||
HVACMode,
|
||||
|
|
Loading…
Reference in New Issue