2022-10-04 18:07:29 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <ESPAsyncWebServer.h>
|
2024-01-20 02:00:22 +01:00
|
|
|
#include <TaskSchedulerDeclarations.h>
|
2022-10-04 18:07:29 +02:00
|
|
|
|
|
|
|
|
class WebApiPowerClass {
|
|
|
|
|
public:
|
2024-01-20 02:00:22 +01:00
|
|
|
void init(AsyncWebServer& server, Scheduler& scheduler);
|
2022-10-04 18:07:29 +02:00
|
|
|
|
|
|
|
|
private:
|
2022-10-04 18:48:21 +02:00
|
|
|
void onPowerStatus(AsyncWebServerRequest* request);
|
2022-10-04 18:07:29 +02:00
|
|
|
void onPowerPost(AsyncWebServerRequest* request);
|
2024-01-20 02:00:22 +01:00
|
|
|
};
|