mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
Allow RC522 components to have multiple configurations (#1782)
This commit is contained in:
parent
3d6dcc9eee
commit
7e3b8fd346
4 changed files with 11 additions and 6 deletions
|
@ -7,7 +7,6 @@ from esphome.core import coroutine
|
||||||
|
|
||||||
CODEOWNERS = ["@glmnet"]
|
CODEOWNERS = ["@glmnet"]
|
||||||
AUTO_LOAD = ["binary_sensor"]
|
AUTO_LOAD = ["binary_sensor"]
|
||||||
MULTI_CONF = True
|
|
||||||
|
|
||||||
CONF_RC522_ID = "rc522_id"
|
CONF_RC522_ID = "rc522_id"
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ from esphome.const import CONF_ID
|
||||||
CODEOWNERS = ["@glmnet"]
|
CODEOWNERS = ["@glmnet"]
|
||||||
DEPENDENCIES = ["i2c"]
|
DEPENDENCIES = ["i2c"]
|
||||||
AUTO_LOAD = ["rc522"]
|
AUTO_LOAD = ["rc522"]
|
||||||
|
MULTI_CONF = True
|
||||||
|
|
||||||
rc522_i2c_ns = cg.esphome_ns.namespace("rc522_i2c")
|
rc522_i2c_ns = cg.esphome_ns.namespace("rc522_i2c")
|
||||||
RC522I2C = rc522_i2c_ns.class_("RC522I2C", rc522.RC522, i2c.I2CDevice)
|
RC522I2C = rc522_i2c_ns.class_("RC522I2C", rc522.RC522, i2c.I2CDevice)
|
||||||
|
|
|
@ -6,6 +6,7 @@ from esphome.const import CONF_ID
|
||||||
CODEOWNERS = ["@glmnet"]
|
CODEOWNERS = ["@glmnet"]
|
||||||
DEPENDENCIES = ["spi"]
|
DEPENDENCIES = ["spi"]
|
||||||
AUTO_LOAD = ["rc522"]
|
AUTO_LOAD = ["rc522"]
|
||||||
|
MULTI_CONF = True
|
||||||
|
|
||||||
rc522_spi_ns = cg.esphome_ns.namespace("rc522_spi")
|
rc522_spi_ns = cg.esphome_ns.namespace("rc522_spi")
|
||||||
RC522Spi = rc522_spi_ns.class_("RC522Spi", rc522.RC522, spi.SPIDevice)
|
RC522Spi = rc522_spi_ns.class_("RC522Spi", rc522.RC522, spi.SPIDevice)
|
||||||
|
|
|
@ -1982,10 +1982,15 @@ rc522_spi:
|
||||||
ESP_LOGD("main", "Found tag %s", x.c_str());
|
ESP_LOGD("main", "Found tag %s", x.c_str());
|
||||||
|
|
||||||
rc522_i2c:
|
rc522_i2c:
|
||||||
update_interval: 1s
|
- update_interval: 1s
|
||||||
on_tag:
|
on_tag:
|
||||||
- lambda: |-
|
- lambda: |-
|
||||||
ESP_LOGD("main", "Found tag %s", x.c_str());
|
ESP_LOGD("main", "Found tag %s", x.c_str());
|
||||||
|
|
||||||
|
- update_interval: 1s
|
||||||
|
on_tag:
|
||||||
|
- lambda: |-
|
||||||
|
ESP_LOGD("main", "Found tag %s", x.c_str());
|
||||||
|
|
||||||
gps:
|
gps:
|
||||||
uart_id: uart0
|
uart_id: uart0
|
||||||
|
|
Loading…
Reference in a new issue