2020-03-28 13:30:51 +01:00
|
|
|
#ifndef WLED_FILE_H
|
|
|
|
#define WLED_FILE_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include <ESPAsyncWebServer.h>
|
|
|
|
/*
|
|
|
|
* Utility for SPIFFS filesystem & Serial console
|
|
|
|
*/
|
|
|
|
|
|
|
|
void handleSerial();
|
|
|
|
bool handleFileRead(AsyncWebServerRequest*, String path);
|
|
|
|
|
2020-03-25 09:00:55 +01:00
|
|
|
#endif // WLED_FILE_H
|