🐍 Makes sveltekit run arduino task loop

This commit is contained in:
Rune Harlyk
2024-07-11 21:28:54 +02:00
committed by Rune Harlyk
parent 6c257784ca
commit c432792300
3 changed files with 4 additions and 6 deletions
+2 -2
View File
@@ -128,6 +128,8 @@ class ESP32SvelteKit {
void recoveryMode() { _apSettingsService.recoveryMode(); }
void loop();
private:
PsychicHttpServer *_server;
unsigned int _numberEndpoints;
@@ -184,8 +186,6 @@ class ESP32SvelteKit {
String _appName = APP_NAME;
protected:
static void _loopImpl(void *_this) { static_cast<ESP32SvelteKit *>(_this)->_loop(); }
void _loop();
void setupServer();
void setupMDNS();
void startServices();