* Refactor group setup * Add @callback decorator and remove commented out code * Keep set, add default on state
10 lines
228 B
Python
10 lines
228 B
Python
"""Support for water heater devices."""
|
|
|
|
DOMAIN = "water_heater"
|
|
|
|
STATE_ECO = "eco"
|
|
STATE_ELECTRIC = "electric"
|
|
STATE_PERFORMANCE = "performance"
|
|
STATE_HIGH_DEMAND = "high_demand"
|
|
STATE_HEAT_PUMP = "heat_pump"
|
|
STATE_GAS = "gas"
|