mirror of
https://github.com/esphome/esphome.git
synced 2025-02-24 13:58:14 +00:00
Co-authored-by: Guillermo Ruffino <glm.net@gmail.com> Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
30 lines
865 B
Python
30 lines
865 B
Python
import esphome.config_validation as cv
|
|
import esphome.codegen as cg
|
|
from esphome.const import CONF_ID
|
|
from esphome.core import coroutine_with_priority, CORE
|
|
|
|
CODEOWNERS = ["@OttoWinter"]
|
|
DEPENDENCIES = ["network"]
|
|
AUTO_LOAD = ["async_tcp"]
|
|
|
|
web_server_base_ns = cg.esphome_ns.namespace("web_server_base")
|
|
WebServerBase = web_server_base_ns.class_("WebServerBase", cg.Component)
|
|
|
|
CONF_WEB_SERVER_BASE_ID = "web_server_base_id"
|
|
CONFIG_SCHEMA = cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(WebServerBase),
|
|
}
|
|
)
|
|
|
|
|
|
@coroutine_with_priority(65.0)
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
await cg.register_component(var, config)
|
|
|
|
if CORE.is_esp32:
|
|
cg.add_library("FS", None)
|
|
# https://github.com/OttoWinter/ESPAsyncWebServer/blob/master/library.json
|
|
cg.add_library("ESPAsyncWebServer-esphome", "1.2.7")
|