mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
12 lines
293 B
Python
12 lines
293 B
Python
|
import esphome.config_validation as cv
|
||
|
|
||
|
|
||
|
def esp32_h2_validate_gpio_pin(value):
|
||
|
# ESP32-H2 not yet supported
|
||
|
raise cv.Invalid("ESP32-H2 isn't supported yet")
|
||
|
|
||
|
|
||
|
def esp32_h2_validate_supports(value):
|
||
|
# ESP32-H2 not yet supported
|
||
|
raise cv.Invalid("ESP32-H2 isn't supported yet")
|