Skip to content
Snippets Groups Projects
fs.h 269 B

#pragma once

#include <Arduino.h>
#include <FS.h>

extern FS* filesystem;

bool fs_init (const char* msgHeader, Print* out);
void ls (Print* out);
void format (Print* out);
void cat (const char* filename, Stream* out);
void testw (const char* filename, Stream* out);