This commit is contained in:
2023-08-21 20:26:38 +02:00
commit 9a4a8c2a7d
33 changed files with 5782 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#ifndef LITTLEFS_WRAPPER_H
#define LITTLEFS_WRAPPER_H
#include <Arduino.h>
bool handle_file(String &&path);
bool handle_list();
const String format_bytes(size_t const &bytes);
void delete_recursive(const String &path);
void format_filesystem();
void handle_upload();
void send_response();
void setup_filesystem();
#endif /* LITTLEFS_WRAPPER_H */