ESP8266 Treppenlichtsteuerung mit OTA zum Firmware Upload
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

filesys.h 395B

12345678910111213141516
  1. #ifndef __FILESYS_H
  2. #define __FILESYS_H
  3. #include <LittleFS.h>
  4. bool mount_fs();
  5. bool format_fs();
  6. void ls(const char * dirname);
  7. void readFile(const char * path);
  8. void writeFile(const char * path, const char * message);
  9. void appendFile(const char * path, const char * message);
  10. void renameFile(const char * path1, const char * path2);
  11. void deleteFile(const char * path);
  12. #endif // __FILESYS_H