mirror of
https://github.com/esphome/esphome.git
synced 2024-12-04 04:28:19 +01:00
22 lines
612 B
Python
22 lines
612 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"]
|
|
|
|
fujitsu_general_ns = cg.esphome_ns.namespace("fujitsu_general")
|
|
FujitsuGeneralClimate = fujitsu_general_ns.class_(
|
|
"FujitsuGeneralClimate", climate_ir.ClimateIR
|
|
)
|
|
|
|
CONFIG_SCHEMA = climate_ir.CLIMATE_IR_WITH_RECEIVER_SCHEMA.extend(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(FujitsuGeneralClimate),
|
|
}
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
await climate_ir.register_climate_ir(var, config)
|