mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 10:00:36 +01:00
dallas: limit addresses to 64 bits (#5413)
This commit is contained in:
parent
0ca8dcd08e
commit
727056a28c
@ -24,7 +24,7 @@ CONFIG_SCHEMA = cv.All(
|
||||
).extend(
|
||||
{
|
||||
cv.GenerateID(CONF_DALLAS_ID): cv.use_id(DallasComponent),
|
||||
cv.Optional(CONF_ADDRESS): cv.hex_int,
|
||||
cv.Optional(CONF_ADDRESS): cv.hex_uint64_t,
|
||||
cv.Optional(CONF_INDEX): cv.positive_int,
|
||||
cv.Optional(CONF_RESOLUTION, default=12): cv.int_range(min=9, max=12),
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user