mirror of
https://github.com/esphome/esphome.git
synced 2025-02-24 05:48:14 +00:00
Co-authored-by: Otto Winter <otto@otto-winter.com> Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
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")
|