2019-09-07 13:48:46 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the "bluetoothheater" distribution
|
|
|
|
* (https://gitlab.com/mrjones.id.au/bluetoothheater)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 Ray Jones <ray@mrjones.id.au>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-09-07 08:28:21 +00:00
|
|
|
#include "NVStorage.h"
|
2020-04-07 21:51:52 +00:00
|
|
|
#include "GetLine.h"
|
2019-09-07 08:28:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
class CMQTTsetup {
|
2020-04-07 21:51:52 +00:00
|
|
|
CGetLine _lineInput;
|
2019-09-07 08:28:21 +00:00
|
|
|
int _mode;
|
|
|
|
bool _active;
|
|
|
|
sMQTTparams _MQTTsetup;
|
|
|
|
bool HandleMQTTsetup(char rxVal);
|
|
|
|
void showMQTTmenu(bool init = false);
|
|
|
|
public:
|
|
|
|
CMQTTsetup();
|
|
|
|
bool Handle(char& rxVal);
|
|
|
|
void setActive();
|
|
|
|
};
|
2020-04-26 06:15:08 +00:00
|
|
|
|
|
|
|
class CSecuritySetup {
|
|
|
|
CGetLine _lineInput;
|
|
|
|
int _mode;
|
|
|
|
bool _active;
|
|
|
|
struct {
|
|
|
|
int Idx;
|
|
|
|
int State;
|
|
|
|
String str1, str2;
|
|
|
|
} _password;
|
|
|
|
sCredentials _credsSetup;
|
|
|
|
bool _handle(char rxVal);
|
|
|
|
void _showMenu(bool init = false);
|
|
|
|
void _initPassword(int idx);
|
|
|
|
bool _getPassword();
|
|
|
|
bool _handlePassword(char rxVal);
|
|
|
|
const char* _getCurrentPassword();
|
|
|
|
void _setPassword(const char* newPW);
|
|
|
|
public:
|
|
|
|
CSecuritySetup();
|
|
|
|
bool Handle(char& rxVal);
|
|
|
|
void setActive();
|
|
|
|
};
|