3 #include "list_entities.h" 12 #include <freertos/FreeRTOS.h> 13 #include <freertos/semphr.h> 16 #if USE_WEBSERVER_VERSION == 2 17 extern const uint8_t ESPHOME_WEBSERVER_INDEX_HTML[]
PROGMEM;
21 #ifdef USE_WEBSERVER_CSS_INCLUDE 22 extern const uint8_t ESPHOME_WEBSERVER_CSS_INCLUDE[]
PROGMEM;
26 #ifdef USE_WEBSERVER_JS_INCLUDE 27 extern const uint8_t ESPHOME_WEBSERVER_JS_INCLUDE[]
PROGMEM;
32 namespace web_server {
57 #if USE_WEBSERVER_VERSION == 1 63 void set_css_url(
const char *css_url);
70 void set_js_url(
const char *js_url);
73 #ifdef USE_WEBSERVER_CSS_INCLUDE 78 void set_css_include(
const char *css_include);
81 #ifdef USE_WEBSERVER_JS_INCLUDE 86 void set_js_include(
const char *js_include);
109 void setup()
override;
110 void loop()
override;
112 void dump_config()
override;
115 float get_setup_priority()
const override;
118 void handle_index_request(AsyncWebServerRequest *request);
121 std::string get_config_json();
123 #ifdef USE_WEBSERVER_CSS_INCLUDE 124 void handle_css_request(AsyncWebServerRequest *request);
128 #ifdef USE_WEBSERVER_JS_INCLUDE 129 void handle_js_request(AsyncWebServerRequest *request);
136 void handle_sensor_request(AsyncWebServerRequest *request,
const UrlMatch &match);
146 void handle_switch_request(AsyncWebServerRequest *request,
const UrlMatch &match);
153 void handle_button_request(AsyncWebServerRequest *request,
const UrlMatch &match);
160 #ifdef USE_BINARY_SENSOR 164 void handle_binary_sensor_request(AsyncWebServerRequest *request,
const UrlMatch &match);
171 void on_fan_update(
fan::Fan *obj)
override;
174 void handle_fan_request(AsyncWebServerRequest *request,
const UrlMatch &match);
184 void handle_light_request(AsyncWebServerRequest *request,
const UrlMatch &match);
190 #ifdef USE_TEXT_SENSOR 194 void handle_text_sensor_request(AsyncWebServerRequest *request,
const UrlMatch &match);
204 void handle_cover_request(AsyncWebServerRequest *request,
const UrlMatch &match);
213 void handle_number_request(AsyncWebServerRequest *request,
const UrlMatch &match);
220 void on_select_update(
select::Select *obj,
const std::string &state,
size_t index)
override;
222 void handle_select_request(AsyncWebServerRequest *request,
const UrlMatch &match);
231 void handle_climate_request(AsyncWebServerRequest *request,
const UrlMatch &match);
238 void on_lock_update(
lock::Lock *obj)
override;
241 void handle_lock_request(AsyncWebServerRequest *request,
const UrlMatch &match);
247 #ifdef USE_ALARM_CONTROL_PANEL 251 void handle_alarm_control_panel_request(AsyncWebServerRequest *request,
const UrlMatch &match);
259 bool canHandle(AsyncWebServerRequest *request)
override;
261 void handleRequest(AsyncWebServerRequest *request)
override;
263 bool isRequestHandlerTrivial()
override;
266 void schedule_(std::function<
void()> &&f);
269 AsyncEventSource events_{
"/events"};
271 #if USE_WEBSERVER_VERSION == 1 272 const char *css_url_{
nullptr};
273 const char *js_url_{
nullptr};
275 #ifdef USE_WEBSERVER_CSS_INCLUDE 276 const char *css_include_{
nullptr};
278 #ifdef USE_WEBSERVER_JS_INCLUDE 279 const char *js_include_{
nullptr};
281 bool include_internal_{
false};
282 bool allow_ota_{
true};
283 bool expose_log_{
true};
Base class for all switches.
const size_t ESPHOME_WEBSERVER_CSS_INCLUDE_SIZE
This class represents the communication layer between the front-end MQTT layer and the hardware outpu...
Base class for all cover devices.
void set_allow_ota(bool allow_ota)
Set whether or not the webserver should expose the OTA form and handler.
SemaphoreHandle_t to_schedule_lock_
This class allows users to create a web server with their ESP nodes.
void set_include_internal(bool include_internal)
Determine whether internal components should be displayed on the web server.
void set_expose_log(bool expose_log)
Set whether or not the webserver should expose the Log.
const size_t ESPHOME_WEBSERVER_JS_INCLUDE_SIZE
friend ListEntitiesIterator
Internal helper struct that is used to parse incoming URLs.
const size_t ESPHOME_WEBSERVER_INDEX_HTML_SIZE
std::string domain
The domain of the component, for example "sensor".
Base-class for all numbers.
bool valid
Whether this match is valid.
std::string id
The id of the device that's being accessed, for example "living_room_fan".
const uint8_t ESPHOME_WEBSERVER_INDEX_HTML [] PROGMEM
Base-class for all selects.
web_server_base::WebServerBase * base_
Base class for all binary_sensor-type classes.
LockState
Enum for all states a lock can be in.
Base-class for all sensors.
ListEntitiesIterator entities_iterator_
std::deque< std::function< void()> > to_schedule_
std::string method
The method that's being called, for example "turn_on".
Base class for all locks.
ClimateDevice - This is the base class for all climate integrations.