Files
Nic Limper a89563a0bb spiffseditor improvements
- spiffseditor improvements
- moved some files around in Littlefs-partition
- small fixes
*** Watch out: also upload the new /data folder to the file system. All existing files will be deleted. If you want to keep the database, download tagDB.json first.
2023-02-02 20:21:07 +01:00

19 lines
524 B
C

#include<Arduino.h>
#include <AsyncTCP.h>
#include <ESPAsyncWebServer.h>
void init_web();
void doImageUpload(AsyncWebServerRequest *request, String filename, size_t index, uint8_t *data, size_t len, bool final);
extern void webSocketSendProcess(void *parameter);
void wsLog(String text);
void wsErr(String text);
void wsSendTaginfo(uint8_t mac[6]);
void wsSendSysteminfo();
extern uint64_t swap64(uint64_t x);
extern AsyncWebSocket ws; //("/ws");
extern SemaphoreHandle_t wsMutex;
extern TaskHandle_t websocketUpdater;