54 lines
1.1 KiB
C++
54 lines
1.1 KiB
C++
#pragma once
|
|
|
|
/**
|
|
* ESP32 SvelteKit
|
|
*
|
|
* A simple, secure and extensible framework for IoT projects for ESP32 platforms
|
|
* with responsive Sveltekit front-end built with TailwindCSS and DaisyUI.
|
|
* https://github.com/theelims/ESP32-sveltekit
|
|
*
|
|
* Copyright (C) 2023 theelims
|
|
*
|
|
* All Rights Reserved. This software may be modified and distributed under
|
|
* the terms of the LGPL v3 license. See the LICENSE file for details.
|
|
**/
|
|
|
|
#include <WiFi.h>
|
|
#include <ESPmDNS.h>
|
|
|
|
#include <PsychicHttp.h>
|
|
#include <SecurityManager.h>
|
|
|
|
#define SLEEP_SERVICE_PATH "/api/sleep"
|
|
|
|
#ifndef WAKEUP_PIN_NUMBER
|
|
#define WAKEUP_PIN_NUMBER 0
|
|
#endif
|
|
|
|
#ifndef WAKEUP_SIGNAL
|
|
#define WAKEUP_SIGNAL 0
|
|
#endif
|
|
|
|
class SleepService
|
|
{
|
|
public:
|
|
SleepService(PsychicHttpServer *server, SecurityManager *securityManager);
|
|
|
|
void begin();
|
|
|
|
static void sleepNow();
|
|
|
|
void attachOnSleepCallback(void (*callbackSleep)())
|
|
{
|
|
_callbackSleep = callbackSleep;
|
|
}
|
|
|
|
private:
|
|
PsychicHttpServer *_server;
|
|
SecurityManager *_securityManager;
|
|
esp_err_t sleep(PsychicRequest *request);
|
|
|
|
protected:
|
|
static void (*_callbackSleep)();
|
|
};
|