mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 15:12:06 +00:00 
			
		
		
		
	Convert components to async-def syntax (#1821)
This commit is contained in:
		| @@ -21,19 +21,19 @@ CONFIG_SCHEMA = fan.FAN_SCHEMA.extend( | ||||
| ).extend(cv.COMPONENT_SCHEMA) | ||||
|  | ||||
|  | ||||
| def to_code(config): | ||||
| async def to_code(config): | ||||
|     var = cg.new_Pvariable(config[CONF_OUTPUT_ID]) | ||||
|     yield cg.register_component(var, config) | ||||
|     await cg.register_component(var, config) | ||||
|  | ||||
|     fan_ = yield fan.create_fan_state(config) | ||||
|     fan_ = await fan.create_fan_state(config) | ||||
|     cg.add(var.set_fan(fan_)) | ||||
|     output_ = yield cg.get_variable(config[CONF_OUTPUT]) | ||||
|     output_ = await cg.get_variable(config[CONF_OUTPUT]) | ||||
|     cg.add(var.set_output(output_)) | ||||
|  | ||||
|     if CONF_OSCILLATION_OUTPUT in config: | ||||
|         oscillation_output = yield cg.get_variable(config[CONF_OSCILLATION_OUTPUT]) | ||||
|         oscillation_output = await cg.get_variable(config[CONF_OSCILLATION_OUTPUT]) | ||||
|         cg.add(var.set_oscillating(oscillation_output)) | ||||
|  | ||||
|     if CONF_DIRECTION_OUTPUT in config: | ||||
|         direction_output = yield cg.get_variable(config[CONF_DIRECTION_OUTPUT]) | ||||
|         direction_output = await cg.get_variable(config[CONF_DIRECTION_OUTPUT]) | ||||
|         cg.add(var.set_direction(direction_output)) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user