14 lines
207 B
C
14 lines
207 B
C
#ifndef PATRIX_FILESYSTEM_H
|
|
#define PATRIX_FILESYSTEM_H
|
|
|
|
#include <FS.h>
|
|
#include <WString.h>
|
|
|
|
bool fsMount();
|
|
|
|
bool fsIsMounted();
|
|
|
|
void fsList(FS& fs, const char *path, const String& indent = "");
|
|
|
|
#endif
|