Restuctures template

This commit is contained in:
Rune Harlyk
2024-04-22 21:32:50 +02:00
committed by Rune Harlyk
parent b804b9df1f
commit 9d6815cb05
4 changed files with 139 additions and 141 deletions
+6 -2
View File
@@ -10,6 +10,7 @@
*
* Copyright (C) 2018 - 2023 rjwats
* Copyright (C) 2023 theelims
* Copyright (C) 2024 runeharlyk
*
* All Rights Reserved. This software may be modified and distributed under
* the terms of the LGPL v3 license. See the LICENSE file for details.
@@ -52,11 +53,11 @@
#endif
#ifndef APP_VERSION
#define APP_VERSION "demo"
#define APP_VERSION "v1"
#endif
#ifndef APP_NAME
#define APP_NAME "ESP32 SvelteKit Demo"
#define APP_NAME "SpotMicro"
#endif
#ifndef ESP32SVELTEKIT_RUNNING_CORE
@@ -206,6 +207,9 @@ private:
protected:
static void _loopImpl(void *_this) { static_cast<ESP32SvelteKit *>(_this)->_loop(); }
void _loop();
void setupServer();
void setupMDNS();
void startServices();
};
#endif