mirror of
https://github.com/esphome/esphome.git
synced 2025-11-18 07:45:56 +00:00
51 lines
1.4 KiB
Python
51 lines
1.4 KiB
Python
import logging
|
|
|
|
from esphome.const import CONF_INPUT, CONF_MODE, CONF_NUMBER
|
|
|
|
import esphome.config_validation as cv
|
|
|
|
_ESP32C6_SPI_PSRAM_PINS = {
|
|
24: "SPICS0",
|
|
25: "SPIQ",
|
|
26: "SPIWP",
|
|
27: "VDD_SPI",
|
|
28: "SPIHD",
|
|
29: "SPICLK",
|
|
30: "SPID",
|
|
}
|
|
|
|
_ESP32C6_STRAPPING_PINS = {8, 9, 15}
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
def esp32_c6_validate_gpio_pin(value):
|
|
if value < 0 or value > 23:
|
|
raise cv.Invalid(f"Invalid pin number: {value} (must be 0-23)")
|
|
if value in _ESP32C6_SPI_PSRAM_PINS:
|
|
raise cv.Invalid(
|
|
f"This pin cannot be used on ESP32-C6s and is already used by the SPI/PSRAM interface (function: {_ESP32C6_SPI_PSRAM_PINS[value]})"
|
|
)
|
|
if value in _ESP32C6_STRAPPING_PINS:
|
|
_LOGGER.warning(
|
|
"GPIO%d is a Strapping PIN and should be avoided.\n"
|
|
"Attaching external pullup/down resistors to strapping pins can cause unexpected failures.\n"
|
|
"See https://esphome.io/guides/faq.html#why-am-i-getting-a-warning-about-strapping-pins",
|
|
value,
|
|
)
|
|
|
|
return value
|
|
|
|
|
|
def esp32_c6_validate_supports(value):
|
|
num = value[CONF_NUMBER]
|
|
mode = value[CONF_MODE]
|
|
is_input = mode[CONF_INPUT]
|
|
|
|
if num < 0 or num > 23:
|
|
raise cv.Invalid(f"Invalid pin number: {value} (must be 0-23)")
|
|
if is_input:
|
|
# All ESP32 pins support input mode
|
|
pass
|
|
return value
|