1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-08 06:12:20 +01:00

Fix pin number validation for sn74hc595 (#2621)

This commit is contained in:
Jan Čermák
2021-10-26 18:10:45 +02:00
committed by Jesse Hills
parent 72108684ea
commit f1377b560e

View File

@@ -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(