ESP32 build corrected

This commit is contained in:
Sandner, Denny 2022-09-19 19:29:46 +02:00
parent aca1688ceb
commit 677acb9416
4 changed files with 27 additions and 4 deletions

View file

@ -7,7 +7,12 @@
#define __WEB_H__
#include "dbg.h"
#include "ESPAsyncTCP.h"
#ifdef ESP32
#include "AsyncTCP.h"
#include "Update.h"
#else
#include "ESPAsyncTCP.h"
#endif
#include "ESPAsyncWebServer.h"
#include "app.h"
#include "webApi.h"