mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 17:27:45 +01:00
Fix neopixelbus missing method pins (#848)
Fixes https://github.com/esphome/issues/issues/839
This commit is contained in:
parent
b3094d6a53
commit
7752794fc5
1 changed files with 5 additions and 1 deletions
|
@ -74,7 +74,11 @@ def validate_method_pin(value):
|
||||||
method_pins['BIT_BANG'] = list(range(0, 16))
|
method_pins['BIT_BANG'] = list(range(0, 16))
|
||||||
elif CORE.is_esp32:
|
elif CORE.is_esp32:
|
||||||
method_pins['BIT_BANG'] = list(range(0, 32))
|
method_pins['BIT_BANG'] = list(range(0, 32))
|
||||||
pins_ = method_pins[method]
|
pins_ = method_pins.get(method)
|
||||||
|
if pins_ is None:
|
||||||
|
# all pins allowed for this method
|
||||||
|
return value
|
||||||
|
|
||||||
for opt in (CONF_PIN, CONF_CLOCK_PIN, CONF_DATA_PIN):
|
for opt in (CONF_PIN, CONF_CLOCK_PIN, CONF_DATA_PIN):
|
||||||
if opt in value and value[opt] not in pins_:
|
if opt in value and value[opt] not in pins_:
|
||||||
raise cv.Invalid("Method {} only supports pin(s) {}".format(
|
raise cv.Invalid("Method {} only supports pin(s) {}".format(
|
||||||
|
|
Loading…
Reference in a new issue