mirror of
https://github.com/esphome/esphome.git
synced 2025-09-02 19:32:19 +01:00
14 lines
390 B
Python
14 lines
390 B
Python
import esphome.codegen as cg
|
|
from esphome.components import climate_ir
|
|
|
|
AUTO_LOAD = ["climate_ir"]
|
|
|
|
hitachi_ac344_ns = cg.esphome_ns.namespace("hitachi_ac344")
|
|
HitachiClimate = hitachi_ac344_ns.class_("HitachiClimate", climate_ir.ClimateIR)
|
|
|
|
CONFIG_SCHEMA = climate_ir.climare_ir_with_receiver_schema(HitachiClimate)
|
|
|
|
|
|
async def to_code(config):
|
|
await climate_ir.new_climate_ir(config)
|