mirror of
https://github.com/esphome/esphome.git
synced 2025-11-02 16:11:53 +00:00
Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8eaffee160 | ||
|
|
557a622f71 | ||
|
|
e9c6556296 | ||
|
|
ae9b247f47 | ||
|
|
a59761d292 | ||
|
|
030c87d142 | ||
|
|
b660e5a7fa | ||
|
|
3b4ea0ed0a | ||
|
|
403b6e32e3 | ||
|
|
b91a1aa027 | ||
|
|
13dbdd9b16 | ||
|
|
37bc0b3b5a | ||
|
|
be70a96651 | ||
|
|
d83d214497 | ||
|
|
6ec0f80b76 | ||
|
|
06f566346d | ||
|
|
b680649113 | ||
|
|
5ab2ef4079 | ||
|
|
392ed64375 | ||
|
|
566c129435 | ||
|
|
c903eb2d01 | ||
|
|
69c78651d5 | ||
|
|
34487c9de4 | ||
|
|
822377be8b |
@@ -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)
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
MAJOR_VERSION = 1
|
||||
MINOR_VERSION = 18
|
||||
PATCH_VERSION = "0b3"
|
||||
PATCH_VERSION = "0"
|
||||
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
|
||||
__version__ = f"{__short_version__}.{PATCH_VERSION}"
|
||||
|
||||
|
||||
@@ -1978,10 +1978,15 @@ rc522_spi:
|
||||
ESP_LOGD("main", "Found tag %s", x.c_str());
|
||||
|
||||
rc522_i2c:
|
||||
update_interval: 1s
|
||||
on_tag:
|
||||
- lambda: |-
|
||||
ESP_LOGD("main", "Found tag %s", x.c_str());
|
||||
- update_interval: 1s
|
||||
on_tag:
|
||||
- lambda: |-
|
||||
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:
|
||||
uart_id: uart0
|
||||
|
||||
Reference in New Issue
Block a user