add button to restart to wifi configuration

This commit is contained in:
technyon
2022-04-08 22:31:51 +02:00
parent 4303b0d877
commit 17461a2a84
6 changed files with 99 additions and 2 deletions

13
SpiffsCookie.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
class SpiffsCookie
{
public:
SpiffsCookie();
virtual ~SpiffsCookie() = default;
void set();
void clear();
const bool isSet();
};