2019-04-09 23:30:27 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the "bluetoothheater" distribution
|
|
|
|
* (https://gitlab.com/mrjones.id.au/bluetoothheater)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 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-08-25 22:41:44 +00:00
|
|
|
#ifndef __GPIOSETUPSCREEN_H__
|
|
|
|
#define __GPIOSETUPSCREEN_H__
|
2019-04-09 23:30:27 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "PasswordScreen.h"
|
2019-07-02 08:27:20 +00:00
|
|
|
#include "../Utility/BTC_GPIO.h"
|
2019-04-09 23:30:27 +00:00
|
|
|
|
|
|
|
class C128x64_OLED;
|
|
|
|
class CScreenManager;
|
|
|
|
|
2019-08-08 20:13:02 +00:00
|
|
|
class CGPIOSetupScreen : public CPasswordScreen
|
2019-04-09 23:30:27 +00:00
|
|
|
{
|
|
|
|
void _adjust(int dir);
|
2019-06-02 12:47:35 +00:00
|
|
|
sGPIOparams _GPIOparams;
|
2019-08-25 22:41:44 +00:00
|
|
|
unsigned long _ExtHold;
|
2019-04-09 23:30:27 +00:00
|
|
|
int _animateCount;
|
2019-04-27 10:41:47 +00:00
|
|
|
int _scrollChar;
|
2019-10-30 10:48:25 +00:00
|
|
|
int _repeatCount;
|
2019-04-09 23:30:27 +00:00
|
|
|
void _initUI();
|
2019-11-10 04:44:54 +00:00
|
|
|
protected:
|
|
|
|
void _saveNV();
|
2019-04-09 23:30:27 +00:00
|
|
|
public:
|
2019-08-08 20:13:02 +00:00
|
|
|
CGPIOSetupScreen(C128x64_OLED& display, CScreenManager& mgr);
|
2019-04-09 23:30:27 +00:00
|
|
|
bool show();
|
|
|
|
bool animate();
|
|
|
|
bool keyHandler(uint8_t event);
|
|
|
|
void onSelect();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|