2018-11-27 10:44:47 +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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-12-01 00:36:25 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2019-01-18 07:09:40 +00:00
|
|
|
// CFuelMixtureScreen
|
2018-12-01 00:36:25 +00:00
|
|
|
//
|
|
|
|
// This screen allows the fuel mixture endpoints to be adjusted
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-01-18 07:09:40 +00:00
|
|
|
#include "FuelMixtureScreen.h"
|
2018-12-16 07:34:39 +00:00
|
|
|
#include "KeyPad.h"
|
|
|
|
#include "../Protocol/helpers.h"
|
|
|
|
#include "../Wifi/BTCWifi.h"
|
2019-01-19 11:05:14 +00:00
|
|
|
#include "../utility/debugPort.h"
|
2018-11-27 10:44:47 +00:00
|
|
|
|
|
|
|
|
2019-01-18 23:06:12 +00:00
|
|
|
CFuelMixtureScreen::CFuelMixtureScreen(C128x64_OLED& display, CScreenManager& mgr) : CPasswordScreen(display, mgr)
|
2018-11-27 10:44:47 +00:00
|
|
|
{
|
|
|
|
_rowSel = 0;
|
|
|
|
_colSel = 0;
|
|
|
|
}
|
|
|
|
|
2019-01-19 11:05:14 +00:00
|
|
|
void
|
|
|
|
CFuelMixtureScreen::onSelect()
|
|
|
|
{
|
|
|
|
adjPump[0] = getHeaterInfo().getPump_Min();
|
|
|
|
adjPump[1] = getHeaterInfo().getPump_Max();
|
|
|
|
adjFan[0] = getHeaterInfo().getFan_Min();
|
|
|
|
adjFan[1] = getHeaterInfo().getFan_Max();
|
|
|
|
}
|
2018-11-27 10:44:47 +00:00
|
|
|
|
2019-01-18 23:06:12 +00:00
|
|
|
bool
|
2019-01-18 07:09:40 +00:00
|
|
|
CFuelMixtureScreen::show()
|
2018-11-27 10:44:47 +00:00
|
|
|
{
|
2018-11-27 19:40:01 +00:00
|
|
|
char str[16];
|
2018-11-28 11:15:23 +00:00
|
|
|
int xPos, yPos;
|
2018-11-27 19:40:01 +00:00
|
|
|
const int col2 = 90;
|
|
|
|
const int col3 = _display.width() - border;
|
2018-11-27 10:44:47 +00:00
|
|
|
|
2019-01-19 11:05:14 +00:00
|
|
|
_display.clearDisplay();
|
2018-11-28 11:15:23 +00:00
|
|
|
|
2019-01-19 11:05:14 +00:00
|
|
|
if(!CPasswordScreen::show()) {
|
2019-01-18 20:15:02 +00:00
|
|
|
switch(_rowSel) {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
// Pump Minimum adjustment
|
|
|
|
yPos = border + 36;
|
|
|
|
_printMenuText(80, yPos, "Min", false, eRightJustify);
|
|
|
|
sprintf(str, "%.1f", adjPump[0]);
|
2019-01-18 23:06:12 +00:00
|
|
|
_printMenuText(col3, yPos, str, _rowSel == 1, eRightJustify);
|
2019-01-18 20:15:02 +00:00
|
|
|
// Pump Maximum adjustment
|
|
|
|
yPos = border + 24;
|
|
|
|
_printMenuText(80, yPos, "Pump Hz Max", false, eRightJustify);
|
|
|
|
sprintf(str, "%.1f", adjPump[1]);
|
2019-01-18 23:06:12 +00:00
|
|
|
_printMenuText(col3, yPos, str, _rowSel == 2, eRightJustify);
|
2019-01-18 20:15:02 +00:00
|
|
|
// Fan Minimum adjustment
|
|
|
|
yPos = border + 12;
|
|
|
|
_printMenuText(80, yPos, "Min", false, eRightJustify);
|
|
|
|
sprintf(str, "%d", adjFan[0]);
|
2019-01-18 23:06:12 +00:00
|
|
|
_printMenuText(col3, yPos, str, _rowSel == 3, eRightJustify);
|
2019-01-18 20:15:02 +00:00
|
|
|
// Fan Maximum adjustment
|
|
|
|
yPos = border;
|
|
|
|
_printMenuText(80, yPos, "Fan RPM Max", false, eRightJustify);
|
|
|
|
sprintf(str, "%d", adjFan[1]);
|
2019-01-18 23:06:12 +00:00
|
|
|
_printMenuText(col3, yPos, str, _rowSel == 4, eRightJustify);
|
2019-01-18 20:15:02 +00:00
|
|
|
// navigation line
|
|
|
|
yPos = 53;
|
2019-01-19 11:05:14 +00:00
|
|
|
xPos = _display.xCentre();
|
|
|
|
_printMenuText(xPos, yPos, "<- exit ->", _rowSel == 0, eCentreJustify);
|
2019-01-18 20:15:02 +00:00
|
|
|
break;
|
2018-11-28 11:15:23 +00:00
|
|
|
|
2019-01-18 23:06:12 +00:00
|
|
|
case 5:
|
2019-01-19 11:05:14 +00:00
|
|
|
_printInverted(_display.xCentre(), 0, " Save Fuel Settings ", true, eCentreJustify);
|
2019-01-18 20:15:02 +00:00
|
|
|
_printMenuText(_display.xCentre(), 35, "Press UP to", false, eCentreJustify);
|
|
|
|
_printMenuText(_display.xCentre(), 43, "confirm save", false, eCentreJustify);
|
|
|
|
break;
|
|
|
|
}
|
2018-11-27 10:44:47 +00:00
|
|
|
}
|
|
|
|
|
2019-01-18 23:06:12 +00:00
|
|
|
return true;
|
2018-11-27 10:44:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-01-18 23:06:12 +00:00
|
|
|
bool
|
2019-01-18 07:09:40 +00:00
|
|
|
CFuelMixtureScreen::keyHandler(uint8_t event)
|
2018-11-27 10:44:47 +00:00
|
|
|
{
|
2019-01-19 11:05:14 +00:00
|
|
|
if(event & keyPressed) {
|
|
|
|
// press CENTRE
|
|
|
|
if(event & key_Centre) {
|
|
|
|
switch(_rowSel) {
|
|
|
|
case 0:
|
|
|
|
_ScreenManager.selectSettingsScreen(false);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
_rowSel = 5; // enter save confirm mode
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
_rowSel = 0;
|
|
|
|
break;
|
|
|
|
}
|
2018-11-27 10:44:47 +00:00
|
|
|
}
|
2019-01-19 11:05:14 +00:00
|
|
|
// press LEFT
|
|
|
|
if(event & key_Left) {
|
|
|
|
switch(_rowSel) {
|
|
|
|
case 0:
|
|
|
|
_ScreenManager.prevScreen();
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
_adjustSetting(-1);
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
_rowSel = 0;
|
|
|
|
break;
|
2018-11-27 10:44:47 +00:00
|
|
|
}
|
2019-01-19 11:05:14 +00:00
|
|
|
}
|
|
|
|
// press RIGHT
|
|
|
|
if(event & key_Right) {
|
|
|
|
switch(_rowSel) {
|
|
|
|
case 0:
|
|
|
|
_ScreenManager.nextScreen();
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
_adjustSetting(+1);
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
_rowSel = 0;
|
|
|
|
break;
|
2018-11-27 10:44:47 +00:00
|
|
|
}
|
2019-01-19 11:05:14 +00:00
|
|
|
}
|
|
|
|
// press UP
|
|
|
|
if(event & key_Up) {
|
|
|
|
if(hasOEMcontroller())
|
|
|
|
_reqOEMWarning();
|
|
|
|
else {
|
2018-12-20 06:29:00 +00:00
|
|
|
switch(_rowSel) {
|
|
|
|
case 0:
|
2019-01-19 11:05:14 +00:00
|
|
|
// grab current settings upon entry to edit mode
|
|
|
|
adjPump[0] = getHeaterInfo().getPump_Min();
|
|
|
|
adjPump[1] = getHeaterInfo().getPump_Max();
|
|
|
|
adjFan[0] = getHeaterInfo().getFan_Min();
|
|
|
|
adjFan[1] = getHeaterInfo().getFan_Max();
|
2019-01-18 23:06:12 +00:00
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
2019-01-19 11:05:14 +00:00
|
|
|
_rowSel++;
|
2019-01-18 23:06:12 +00:00
|
|
|
_colSel = 0;
|
2019-01-19 11:05:14 +00:00
|
|
|
UPPERLIMIT(_rowSel, 4);
|
2019-01-18 23:06:12 +00:00
|
|
|
break;
|
|
|
|
case 5:
|
2019-01-19 11:05:14 +00:00
|
|
|
_showStoringMessage();
|
|
|
|
setPumpMin(adjPump[0]);
|
|
|
|
setPumpMax(adjPump[1]);
|
|
|
|
setFanMin(adjFan[0]);
|
|
|
|
setFanMax(adjFan[1]);
|
|
|
|
saveNV();
|
2018-12-20 06:29:00 +00:00
|
|
|
_rowSel = 0;
|
|
|
|
break;
|
|
|
|
}
|
2018-11-27 10:44:47 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-19 11:05:14 +00:00
|
|
|
// press DOWN
|
|
|
|
if(event & key_Down) {
|
2018-11-27 10:44:47 +00:00
|
|
|
switch(_rowSel) {
|
2019-01-18 23:06:12 +00:00
|
|
|
case 1:
|
2018-11-27 10:44:47 +00:00
|
|
|
case 2:
|
|
|
|
case 3:
|
2018-11-27 19:40:01 +00:00
|
|
|
case 4:
|
2019-01-19 11:05:14 +00:00
|
|
|
_rowSel--;
|
|
|
|
_colSel = 0;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
_rowSel = 0;
|
2018-11-28 11:15:23 +00:00
|
|
|
break;
|
2018-11-27 10:44:47 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-19 11:05:14 +00:00
|
|
|
_ScreenManager.reqUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(event & keyRepeat) {
|
|
|
|
switch(_rowSel) {
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
int adj = 0;
|
|
|
|
if(event & key_Right) adj = +1;
|
|
|
|
if(event & key_Left) adj = -1;
|
|
|
|
if(adj) {
|
|
|
|
_adjustSetting(adj);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
_ScreenManager.reqUpdate();
|
2018-11-27 10:44:47 +00:00
|
|
|
}
|
2019-01-18 23:06:12 +00:00
|
|
|
return true;
|
2018-11-27 10:44:47 +00:00
|
|
|
}
|
2018-11-27 19:40:01 +00:00
|
|
|
|
|
|
|
void
|
2019-01-18 07:09:40 +00:00
|
|
|
CFuelMixtureScreen::_adjustSetting(int dir)
|
2018-11-27 19:40:01 +00:00
|
|
|
{
|
|
|
|
switch(_rowSel) {
|
2019-01-18 23:06:12 +00:00
|
|
|
case 1:
|
2018-11-27 19:40:01 +00:00
|
|
|
adjPump[0] += (float(dir) * 0.1f);
|
|
|
|
break;
|
2019-01-18 23:06:12 +00:00
|
|
|
case 2:
|
2018-11-27 19:40:01 +00:00
|
|
|
adjPump[1] += (float(dir) * 0.1f);
|
|
|
|
break;
|
2019-01-18 23:06:12 +00:00
|
|
|
case 3:
|
2018-11-27 19:40:01 +00:00
|
|
|
adjFan[0] += dir * 10;
|
|
|
|
break;
|
2019-01-18 23:06:12 +00:00
|
|
|
case 4:
|
2018-11-27 19:40:01 +00:00
|
|
|
adjFan[1] += dir * 10;
|
|
|
|
break;
|
|
|
|
}
|
2018-11-28 11:15:23 +00:00
|
|
|
LOWERLIMIT(adjPump[0], 0.5f);
|
|
|
|
UPPERLIMIT(adjPump[0], 10.f);
|
2019-01-19 11:05:14 +00:00
|
|
|
LOWERLIMIT(adjPump[1], 0.5f);
|
|
|
|
UPPERLIMIT(adjPump[1], 10.f);
|
|
|
|
LOWERLIMIT(adjFan[0], 1000);
|
|
|
|
UPPERLIMIT(adjFan[0], 5000);
|
2018-11-28 11:15:23 +00:00
|
|
|
LOWERLIMIT(adjFan[1], 1000);
|
|
|
|
UPPERLIMIT(adjFan[1], 5000);
|
2018-11-27 19:40:01 +00:00
|
|
|
}
|