mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-20 04:53:28 +02:00
20 lines
560 B
Python
20 lines
560 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import climate_ir
|
|
from esphome.const import CONF_ID
|
|
|
|
AUTO_LOAD = ['climate_ir']
|
|
CODEOWNERS = ['@glmnet']
|
|
|
|
coolix_ns = cg.esphome_ns.namespace('coolix')
|
|
CoolixClimate = coolix_ns.class_('CoolixClimate', climate_ir.ClimateIR)
|
|
|
|
CONFIG_SCHEMA = climate_ir.CLIMATE_IR_WITH_RECEIVER_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_id(CoolixClimate),
|
|
})
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
yield climate_ir.register_climate_ir(var, config)
|