-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
import esphome.codegen as cg | ||
import esphome.config_validation as cv | ||
from esphome.components import climate | ||
from esphome.components.logger import HARDWARE_UART_TO_SERIAL | ||
from esphome.const import ( | ||
CONF_ID, | ||
CONF_HARDWARE_UART, | ||
CONF_UPDATE_INTERVAL, | ||
CONF_MODE, | ||
CONF_FAN_MODE, | ||
CONF_SWING_MODE, | ||
) | ||
from esphome.core import CORE, coroutine | ||
|
||
AUTO_LOAD = ["climate"] | ||
|
||
DEPENDENCIES = ["BalboaGL"] | ||
|
||
|
||
CONF_SUPPORTS = "supports" | ||
DEFAULT_CLIMATE_MODES = ["HEAT","AUTO"] | ||
DEFAULT_FAN_MODES = ["OFF"] | ||
DEFAULT_SWING_MODES = ["OFF"] | ||
|
||
BalboaGL = cg.global_ns.class_( | ||
"BalboaGL", climate.Climate, cg.PollingComponent | ||
) | ||
|
||
|
||
def valid_uart(uart): | ||
if CORE.is_esp32: | ||
uarts = [ "UART1", "UART2"] | ||
else: | ||
raise NotImplementedError | ||
|
||
return cv.one_of(*uarts, upper=True)(uart) | ||
|
||
|
||
CONFIG_SCHEMA = climate.CLIMATE_SCHEMA.extend( | ||
{ | ||
cv.GenerateID(): cv.declare_id(BalboaGL), | ||
cv.Optional(CONF_HARDWARE_UART, default="UART1"): valid_uart, | ||
# If polling interval is greater than 9 seconds, the HeatPump library | ||
# reconnects, but doesn't then follow up with our data request. | ||
cv.Optional(CONF_UPDATE_INTERVAL, default="100ms"): cv.All( | ||
cv.update_interval, cv.Range(max=cv.TimePeriod(milliseconds=9000)) | ||
), | ||
# Optionally override the supported ClimateTraits. | ||
cv.Optional(CONF_SUPPORTS, default={}): cv.Schema( | ||
{ | ||
cv.Optional(CONF_MODE, default=DEFAULT_CLIMATE_MODES): | ||
cv.ensure_list(climate.validate_climate_mode), | ||
cv.Optional(CONF_FAN_MODE, default=DEFAULT_FAN_MODES): | ||
cv.ensure_list(climate.validate_climate_fan_mode), | ||
cv.Optional(CONF_SWING_MODE, default=DEFAULT_SWING_MODES): | ||
cv.ensure_list(climate.validate_climate_swing_mode), | ||
} | ||
), | ||
} | ||
).extend(cv.COMPONENT_SCHEMA) | ||
|
||
|
||
@coroutine | ||
def to_code(config): | ||
serial = HARDWARE_UART_TO_SERIAL[config[CONF_HARDWARE_UART]] | ||
var = cg.new_Pvariable(config[CONF_ID], cg.RawExpression(f"&{serial}")) | ||
|
||
supports = config[CONF_SUPPORTS] | ||
traits = var.config_traits() | ||
|
||
for mode in supports[CONF_MODE]: | ||
if mode == "OFF": | ||
continue | ||
cg.add(traits.add_supported_mode(climate.CLIMATE_MODES[mode])) | ||
|
||
for mode in supports[CONF_FAN_MODE]: | ||
cg.add(traits.add_supported_fan_mode(climate.CLIMATE_FAN_MODES[mode])) | ||
|
||
for mode in supports[CONF_SWING_MODE]: | ||
cg.add(traits.add_supported_swing_mode( | ||
climate.CLIMATE_SWING_MODES[mode] | ||
)) | ||
|
||
|
||
|
||
yield cg.register_component(var, config) | ||
yield climate.register_climate(var, config) |