SensESP 3.0.1
Universal Signal K sensor toolkit ESP32
Loading...
Searching...
No Matches
filesystem.h
Go to the documentation of this file.
1#ifndef SENSESP_SYSTEM_FILESYSTEM_H
2#define SENSESP_SYSTEM_FILESYSTEM_H
3
4#include "resettable.h"
5
6namespace sensesp {
7
8class Filesystem : public Resettable {
9 public:
10 Filesystem();
12 virtual void reset() override;
13};
14
15} // namespace sensesp
16
17#endif
virtual void reset() override
Automatic calling of the reset() method when the device needs to be reset.
Definition resettable.h:20