mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	[climate] Update components to use `climate_schema(...)` (#8788)
				
					
				
			This commit is contained in:
		| @@ -1,20 +1,13 @@ | ||||
| import esphome.codegen as cg | ||||
| from esphome.components import climate_ir | ||||
| import esphome.config_validation as cv | ||||
| from esphome.const import CONF_ID | ||||
|  | ||||
| AUTO_LOAD = ["climate_ir"] | ||||
|  | ||||
| noblex_ns = cg.esphome_ns.namespace("noblex") | ||||
| NoblexClimate = noblex_ns.class_("NoblexClimate", climate_ir.ClimateIR) | ||||
|  | ||||
| CONFIG_SCHEMA = climate_ir.CLIMATE_IR_WITH_RECEIVER_SCHEMA.extend( | ||||
|     { | ||||
|         cv.GenerateID(): cv.declare_id(NoblexClimate), | ||||
|     } | ||||
| ) | ||||
| CONFIG_SCHEMA = climate_ir.climare_ir_with_receiver_schema(NoblexClimate) | ||||
|  | ||||
|  | ||||
| async def to_code(config): | ||||
|     var = cg.new_Pvariable(config[CONF_ID]) | ||||
|     await climate_ir.register_climate_ir(var, config) | ||||
|     await climate_ir.new_climate_ir(config) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user