mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
Fix neopixelbus missing method pins (#848)
Fixes https://github.com/esphome/issues/issues/839
This commit is contained in:
parent
fb055750df
commit
907c14aa98
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))
|
||||
elif CORE.is_esp32:
|
||||
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):
|
||||
if opt in value and value[opt] not in pins_:
|
||||
raise cv.Invalid("Method {} only supports pin(s) {}".format(
|
||||
|
|
Loading…
Reference in a new issue