mirror of
https://github.com/esphome/esphome.git
synced 2024-12-01 19:24:14 +01:00
eea78531a1
* add climate * Mitsubishi updates * refactor mitsubishi to use climate_ir * lint
18 lines
545 B
Python
18 lines
545 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']
|
|
|
|
mitsubishi_ns = cg.esphome_ns.namespace('mitsubishi')
|
|
MitsubishiClimate = mitsubishi_ns.class_('MitsubishiClimate', climate_ir.ClimateIR)
|
|
|
|
CONFIG_SCHEMA = climate_ir.CLIMATE_IR_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_id(MitsubishiClimate),
|
|
})
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
yield climate_ir.register_climate_ir(var, config)
|