#pragma once #include #include #include #include #include // Webserver for stats namespace webserver { extern std::function handle_callback; extern std::function handle_callback_html; extern std::function()> handle_callback_polarplot; extern std::function()> handle_callback_fft; extern std::function()> handle_callback_schedule; extern bool add_polarplot_handler; void start(std::string http_server_url); void stop(); };