mirror of
https://github.com/esphome/esphome.git
synced 2025-01-20 21:04:03 +00:00
1c7ca4bc6f
* Recommend similar keys for spelling errors Fixes https://github.com/esphome/feature-requests/issues/68 * Fixes * Fix
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
import voluptuous as vol
|
|
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_CSS_URL, CONF_ID, CONF_JS_URL, CONF_PORT
|
|
from esphome.core import CORE
|
|
from esphome.cpp_generator import Pvariable, add
|
|
from esphome.cpp_helpers import setup_component
|
|
from esphome.cpp_types import App, Component, StoringController, esphome_ns
|
|
|
|
WebServer = esphome_ns.class_('WebServer', Component, StoringController)
|
|
|
|
CONFIG_SCHEMA = cv.Schema({
|
|
cv.GenerateID(): cv.declare_variable_id(WebServer),
|
|
vol.Optional(CONF_PORT): cv.port,
|
|
vol.Optional(CONF_CSS_URL): cv.string,
|
|
vol.Optional(CONF_JS_URL): cv.string,
|
|
}).extend(cv.COMPONENT_SCHEMA.schema)
|
|
|
|
|
|
def to_code(config):
|
|
rhs = App.init_web_server(config.get(CONF_PORT))
|
|
web_server = Pvariable(config[CONF_ID], rhs)
|
|
if CONF_CSS_URL in config:
|
|
add(web_server.set_css_url(config[CONF_CSS_URL]))
|
|
if CONF_JS_URL in config:
|
|
add(web_server.set_js_url(config[CONF_JS_URL]))
|
|
|
|
setup_component(web_server, config)
|
|
|
|
|
|
REQUIRED_BUILD_FLAGS = '-DUSE_WEB_SERVER'
|
|
|
|
|
|
def lib_deps(config):
|
|
deps = []
|
|
if CORE.is_esp32:
|
|
deps.append('FS')
|
|
deps.append('ESP Async WebServer@1.1.1')
|
|
return deps
|