| 12345678910111213141516171819202122 |
- #pragma once
- #include "esp_err.h"
- /**
- * Web server for control panel
- * Provides:
- * - WiFi configuration
- * - Device name configuration
- * - OTA update
- */
- /**
- * Initialize and start the web server
- * @param port HTTP server port (default: 80)
- */
- esp_err_t web_server_start(uint16_t port);
- /**
- * Stop the web server
- */
- void web_server_stop(void);
|