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