mirror of
https://github.com/esphome/esphome.git
synced 2025-01-31 10:10:56 +00:00
Fix pin number validation for sn74hc595 (#2621)
This commit is contained in:
parent
2f85c27a05
commit
9f625ee7d1
@ -60,7 +60,7 @@ SN74HC595_PIN_SCHEMA = cv.All(
|
||||
{
|
||||
cv.GenerateID(): cv.declare_id(SN74HC595GPIOPin),
|
||||
cv.Required(CONF_SN74HC595): cv.use_id(SN74HC595Component),
|
||||
cv.Required(CONF_NUMBER): cv.int_range(min=0, max=7),
|
||||
cv.Required(CONF_NUMBER): cv.int_range(min=0, max=31),
|
||||
cv.Optional(CONF_MODE, default={}): cv.All(
|
||||
{
|
||||
cv.Optional(CONF_OUTPUT, default=True): cv.All(
|
||||
|
Loading…
x
Reference in New Issue
Block a user