16 lines
395 B
C
Raw Normal View History

2021-06-22 23:38:39 +02:00
#ifndef __FILESYS_H
#define __FILESYS_H
#include <LittleFS.h>
bool mount_fs();
bool format_fs();
2021-06-23 01:30:28 +02:00
void ls(const char * dirname);
2021-06-22 23:38:39 +02:00
void readFile(const char * path);
void writeFile(const char * path, const char * message);
void appendFile(const char * path, const char * message);
void renameFile(const char * path1, const char * path2);
void deleteFile(const char * path);
2021-06-23 15:22:38 +02:00
2021-06-22 23:38:39 +02:00
#endif // __FILESYS_H