merge of v23.9.11 broke the system. As a workaround upgrade espressif32 from 6.3.2 to 6.4.0 is skipped. See #440
15 lines
290 B
C++
15 lines
290 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include <ESPAsyncWebServer.h>
|
|
|
|
class WebApiGridProfileClass {
|
|
public:
|
|
void init(AsyncWebServer* server);
|
|
void loop();
|
|
|
|
private:
|
|
void onGridProfileStatus(AsyncWebServerRequest* request);
|
|
|
|
AsyncWebServer* _server;
|
|
}; |