mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
Fix ADC pin validation on ESP32-C3 (#2551)
This commit is contained in:
parent
6ef57a2973
commit
3a760fbb44
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ def validate_adc_pin(value):
|
|||
if is_esp32c3():
|
||||
if not (0 <= value <= 4): # ADC1
|
||||
raise cv.Invalid("ESP32-C3: Only pins 0 though 4 support ADC.")
|
||||
if not (32 <= value <= 39): # ADC1
|
||||
elif not (32 <= value <= 39): # ADC1
|
||||
raise cv.Invalid("ESP32: Only pins 32 though 39 support ADC.")
|
||||
elif CORE.is_esp8266:
|
||||
from esphome.components.esp8266.gpio import CONF_ANALOG
|
||||
|
|
Loading…
Reference in a new issue