standalone w/ web server for testing

This commit is contained in:
proddy
2020-07-20 15:54:57 +02:00
parent cbd3585276
commit 63e75c2d63
27 changed files with 2847 additions and 88 deletions

10
lib_standalone/FS.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef FS_h
#define FS_h
class FS {
bool open() {
return true;
};
};
#endif