max80_littlefs.h 278 B

1234567891011121314
  1. #ifndef __max80_LITTLEFS_H__
  2. #define __max80_LITTLEFS__H__
  3. #include <Arduino.h>
  4. #include "max80_config.h"
  5. namespace max80 {
  6. class littlefs {
  7. public:
  8. void setup();
  9. bool loadconfig();
  10. bool saveconfig();
  11. private:
  12. };
  13. }
  14. #endif