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 418B

12345678910111213141516
  1. #pragma once
  2. #include <LittleFS.h>
  3. // some usefull wrappers for Filesystem
  4. bool mount_fs();
  5. bool format_fs();
  6. File open(const char * path);
  7. void ls(const char * dirname);
  8. void printFile(const char * path);
  9. void writeFile(const char * path, const char * message);
  10. void appendFile(const char * path, const char * message);
  11. void renameFile(const char * path1, const char * path2);
  12. void deleteFile(const char * path);