mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	Allow RC522 components to have multiple configurations (#1782)
This commit is contained in:
		| @@ -7,7 +7,6 @@ from esphome.core import coroutine | ||||
|  | ||||
| CODEOWNERS = ["@glmnet"] | ||||
| AUTO_LOAD = ["binary_sensor"] | ||||
| MULTI_CONF = True | ||||
|  | ||||
| CONF_RC522_ID = "rc522_id" | ||||
|  | ||||
|   | ||||
| @@ -6,7 +6,7 @@ from esphome.const import CONF_ID | ||||
| CODEOWNERS = ["@glmnet"] | ||||
| DEPENDENCIES = ["i2c"] | ||||
| AUTO_LOAD = ["rc522"] | ||||
|  | ||||
| MULTI_CONF = True | ||||
|  | ||||
| rc522_i2c_ns = cg.esphome_ns.namespace("rc522_i2c") | ||||
| RC522I2C = rc522_i2c_ns.class_("RC522I2C", rc522.RC522, i2c.I2CDevice) | ||||
|   | ||||
| @@ -6,6 +6,7 @@ from esphome.const import CONF_ID | ||||
| CODEOWNERS = ["@glmnet"] | ||||
| DEPENDENCIES = ["spi"] | ||||
| AUTO_LOAD = ["rc522"] | ||||
| MULTI_CONF = True | ||||
|  | ||||
| rc522_spi_ns = cg.esphome_ns.namespace("rc522_spi") | ||||
| RC522Spi = rc522_spi_ns.class_("RC522Spi", rc522.RC522, spi.SPIDevice) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user