ESPHome 2026.1.0-dev
Loading...
Searching...
No Matches
ota_web_server.h
Go to the documentation of this file.
1#pragma once
2
4#ifdef USE_WEBSERVER_OTA
5
9
10namespace esphome::web_server {
11
13 public:
14 void setup() override;
15 void dump_config() override;
16 float get_setup_priority() const override { return setup_priority::AFTER_WIFI; }
17
18 protected:
19 friend class OTARequestHandler;
20};
21
22} // namespace esphome::web_server
23
24#endif // USE_WEBSERVER_OTA
const float AFTER_WIFI
For components that should be initialized after WiFi is connected.
Definition component.cpp:88