mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
Correct constant for dynamic I2S bus in NeoPixelBus (#2797)
This commit is contained in:
parent
5e631bc6ba
commit
9681dfb458
1 changed files with 2 additions and 2 deletions
|
@ -88,8 +88,8 @@ def _esp32_i2s_default_bus():
|
||||||
|
|
||||||
|
|
||||||
def _validate_esp32_i2s_bus(value):
|
def _validate_esp32_i2s_bus(value):
|
||||||
if isinstance(value, str) and value.lower() == CHANNEL_DYNAMIC:
|
if isinstance(value, str) and value.lower() == BUS_DYNAMIC:
|
||||||
value = CHANNEL_DYNAMIC
|
value = BUS_DYNAMIC
|
||||||
else:
|
else:
|
||||||
value = cv.int_(value)
|
value = cv.int_(value)
|
||||||
variant_buses = {
|
variant_buses = {
|
||||||
|
|
Loading…
Reference in a new issue