ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 line
132B

  1. #pragma once
  2. #include <esp_http_server.h>
  3. httpd_handle_t start_webserver(void);
  4. void stop_webserver(httpd_handle_t server);