ESP32_ChinaDieselHeater_Con.../Arduino/BTCDieselHeater/Screen7.cpp

232 lines
5.9 KiB
C++
Raw Normal View History

2018-12-07 04:18:24 +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/>.
*
*/
///////////////////////////////////////////////////////////////////////////
//
// CScreen5
//
// This screen allows the fuel mixture endpoints to be adjusted
//
///////////////////////////////////////////////////////////////////////////
#include "128x64OLED.h"
#include "KeyPad.h"
#include "helpers.h"
#include "Screen7.h"
2018-12-07 11:16:04 +00:00
#include "NVStorage.h"
#include "RTClib.h"
2018-12-07 04:18:24 +00:00
2018-12-07 11:16:04 +00:00
CScreen7::CScreen7(C128x64_OLED& display, CScreenManager& mgr, int instance) : CScreenHeader(display, mgr)
2018-12-07 04:18:24 +00:00
{
_rowSel = 0;
_colSel = 0;
2018-12-07 11:16:04 +00:00
_instance = instance;
NVstore.getTimerInfo(_instance, _timer);
2018-12-07 04:18:24 +00:00
}
void
CScreen7::show()
{
CScreenHeader::show();
char str[16];
int xPos, yPos;
2018-12-07 11:16:04 +00:00
sprintf(str, " Timer %d ", _instance + 1);
_printInverted(0, 16, str, true);
2018-12-07 04:18:24 +00:00
switch(_rowSel) {
case 0:
case 1:
yPos = 28;
xPos = 32;
// start
_printMenuText(xPos, yPos, "Start", false, eRightJustify);
2018-12-07 11:16:04 +00:00
_printMenuText(xPos+18, yPos, ":");
2018-12-07 04:18:24 +00:00
xPos += 6;
2018-12-07 11:16:04 +00:00
sprintf(str, "%02d", _timer.start.hour);
2018-12-07 04:18:24 +00:00
_printMenuText(xPos, yPos, str, _rowSel==1 && _colSel==0);
2018-12-07 11:16:04 +00:00
xPos += 17;
sprintf(str, "%02d", _timer.start.min);
2018-12-07 04:18:24 +00:00
_printMenuText(xPos, yPos, str, _rowSel==1 && _colSel==1);
// stop
xPos = 32;
yPos = 40;
_printMenuText(xPos, yPos, "Stop", false, eRightJustify);
2018-12-07 11:16:04 +00:00
_printMenuText(xPos+18, yPos, ":");
2018-12-07 04:18:24 +00:00
xPos += 6;
2018-12-07 11:16:04 +00:00
sprintf(str, "%02d", _timer.stop.hour);
2018-12-07 04:18:24 +00:00
_printMenuText(xPos, yPos, str, _rowSel==1 && _colSel==2);
2018-12-07 11:16:04 +00:00
xPos += 17;
sprintf(str, "%02d", _timer.stop.min);
2018-12-07 04:18:24 +00:00
_printMenuText(xPos, yPos, str, _rowSel==1 && _colSel==3);
// control
2018-12-07 11:16:04 +00:00
xPos = _display.width() - border;
yPos = 28;
2018-12-07 04:18:24 +00:00
const char* msg;
2018-12-07 11:16:04 +00:00
if(_timer.enabled)
2018-12-07 04:18:24 +00:00
msg = "Enabled";
else
msg = "Disabled";
if(_rowSel == 1)
_printMenuText(xPos, yPos, msg, _colSel==4, eRightJustify);
else
2018-12-07 11:16:04 +00:00
_printInverted(xPos, yPos, msg, _timer.enabled, eRightJustify);
2018-12-07 04:18:24 +00:00
yPos = 40;
2018-12-07 11:16:04 +00:00
if(_timer.repeat)
2018-12-07 04:18:24 +00:00
msg = "Repeat";
else
2018-12-07 11:16:04 +00:00
msg = "Once";
2018-12-07 04:18:24 +00:00
if(_rowSel == 1)
_printMenuText(xPos, yPos, msg, _colSel==5, eRightJustify);
else
2018-12-07 11:16:04 +00:00
_printInverted(xPos, yPos, msg, _timer.repeat, eRightJustify);
2018-12-07 04:18:24 +00:00
// navigation line
yPos = 53;
xPos = _display.xCentre();
_printMenuText(xPos, yPos, "<- ->", _rowSel==0, eCentreJustify);
break;
}
}
void
CScreen7::keyHandler(uint8_t event)
{
// handle initial key press
if(event & keyPressed) {
// press CENTRE
if(event & key_Centre) {
if(_rowSel == 1) {
2018-12-07 11:16:04 +00:00
NVstore.setTimerInfo(_instance, _timer);
NVstore.save();
2018-12-07 04:18:24 +00:00
_rowSel = 0;
}
return;
}
// press LEFT - navigate fields, or screens
if(event & key_Left) {
switch(_rowSel) {
case 0:
_ScreenManager.prevScreen();
break;
case 1:
_colSel--;
ROLLLOWERLIMIT(_colSel, 0, 5);
break;
}
}
// press RIGHT - navigate fields, or screens
if(event & key_Right) {
switch(_rowSel) {
case 0:
_ScreenManager.nextScreen();
break;
case 1:
_colSel++;
ROLLUPPERLIMIT(_colSel, 5, 0);
break;
}
}
// press UP
if(event & key_Up) {
switch(_rowSel) {
case 0:
// move from screen navigation to field select & adjust
_rowSel = 1;
_colSel = 0;
break;
case 1:
// adjust selected item
adjust(+1);
break;
}
}
// press DOWN - can only leave adjustment by using OK (centre button)
if(event & key_Down) {
// adjust selected item
if(_rowSel == 1) adjust(-1);
}
}
// handle held down keys
if(event & keyRepeat) {
if(_rowSel == 1) {
if(event & key_Down) adjust(-1);
2018-12-07 11:16:04 +00:00
if(event & key_Up) adjust(+1);
2018-12-07 04:18:24 +00:00
}
}
_ScreenManager.reqUpdate();
}
void
CScreen7::adjust(int dir)
{
int days;
int maskDOW = 0x01 << _colSel; // if doing Day of Week - (_rowSel == 2)
2018-12-07 04:18:24 +00:00
switch(_colSel) {
case 0:
2018-12-07 11:16:04 +00:00
_timer.start.hour += dir;
ROLLUPPERLIMIT(_timer.start.hour, 23, 0);
ROLLLOWERLIMIT(_timer.start.hour, 0, 23);
2018-12-07 04:18:24 +00:00
break;
case 1:
2018-12-07 11:16:04 +00:00
_timer.start.min += dir;
ROLLUPPERLIMIT(_timer.start.min, 59, 0);
ROLLLOWERLIMIT(_timer.start.min, 0, 59);
2018-12-07 04:18:24 +00:00
break;
case 2:
2018-12-07 11:16:04 +00:00
_timer.stop.hour += dir;
ROLLUPPERLIMIT(_timer.stop.hour, 23, 0);
ROLLLOWERLIMIT(_timer.stop.hour, 0, 23);
2018-12-07 04:18:24 +00:00
break;
case 3:
2018-12-07 11:16:04 +00:00
_timer.stop.min += dir;
ROLLUPPERLIMIT(_timer.stop.min, 59, 0);
ROLLLOWERLIMIT(_timer.stop.min, 0, 59);
2018-12-07 04:18:24 +00:00
break;
case 4:
if(_rowSel == 1) {
_timer.enabled &= 0x80; // ensure specific day flags are cleared
_timer.enabled ^= 0x80; // toggle next day flag
}
if(_rowSel == 2) {
_timer.enabled &= 0x7f; // ensure next day flag is cleared
_timer.enabled ^= maskDOW; // toggle flag for day of week
}
2018-12-07 04:18:24 +00:00
break;
case 5:
2018-12-07 11:16:04 +00:00
_timer.repeat = !_timer.repeat;
2018-12-07 04:18:24 +00:00
break;
}
}