OpenDTU-old/include/WebApi_gridprofile.h
Thomas Basler 9ac6dd6e8d Feature: First very basic support to read the grid profile
The parser is still missing and requires community support to collect data.
2023-09-07 22:08:07 +02:00

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;
};