mirror of
https://github.com/esphome/esphome.git
synced 2025-09-01 19:02:18 +01:00
22 lines
594 B
Python
22 lines
594 B
Python
import esphome.codegen as cg
|
|
from esphome.components import climate_ir
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_USE_FAHRENHEIT
|
|
|
|
AUTO_LOAD = ["climate_ir"]
|
|
|
|
whynter_ns = cg.esphome_ns.namespace("whynter")
|
|
Whynter = whynter_ns.class_("Whynter", climate_ir.ClimateIR)
|
|
|
|
|
|
CONFIG_SCHEMA = climate_ir.climate_ir_with_receiver_schema(Whynter).extend(
|
|
{
|
|
cv.Optional(CONF_USE_FAHRENHEIT, default=False): cv.boolean,
|
|
}
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = await climate_ir.new_climate_ir(config)
|
|
cg.add(var.set_fahrenheit(config[CONF_USE_FAHRENHEIT]))
|