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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "128x64OLED.h"
|
|
|
|
#include "ThermostatModeScreen.h"
|
|
|
|
#include "KeyPad.h"
|
|
|
|
#include "../Protocol/helpers.h"
|
|
|
|
#include "../Utility/UtilClasses.h"
|
2019-04-27 10:41:47 +00:00
|
|
|
#include "fonts/Icons.h"
|
2019-05-11 02:18:06 +00:00
|
|
|
#include "../Utility/NVStorage.h"
|
2019-04-09 23:30:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// CThermostatModeScreen
|
|
|
|
//
|
|
|
|
// This screen provides control over experimental features
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static const int Line3 = 14;
|
|
|
|
static const int Line2 = 27;
|
|
|
|
static const int Line1 = 40;
|
2019-05-11 02:18:06 +00:00
|
|
|
static const int Column = 40;
|
2019-04-09 23:30:27 +00:00
|
|
|
|
|
|
|
CThermostatModeScreen::CThermostatModeScreen(C128x64_OLED& display, CScreenManager& mgr) : CPasswordScreen(display, mgr)
|
|
|
|
{
|
|
|
|
_initUI();
|
|
|
|
_window = 10;
|
|
|
|
_thermoMode = 0;
|
2019-04-27 10:41:47 +00:00
|
|
|
_cyclicMode.init();
|
2019-04-09 23:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CThermostatModeScreen::onSelect()
|
|
|
|
{
|
|
|
|
CPasswordScreen::onSelect();
|
|
|
|
_initUI();
|
|
|
|
_window = NVstore.getThermostatMethodWindow();
|
|
|
|
_thermoMode = NVstore.getThermostatMethodMode();
|
|
|
|
_cyclicMode = NVstore.getCyclicMode();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CThermostatModeScreen::_initUI()
|
|
|
|
{
|
|
|
|
_rowSel = 0;
|
|
|
|
_animateCount = 0;
|
2019-04-18 11:02:39 +00:00
|
|
|
_keyRepeat = -1;
|
2019-04-09 23:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CThermostatModeScreen::show()
|
|
|
|
{
|
|
|
|
char msg[20];
|
|
|
|
_display.clearDisplay();
|
|
|
|
|
|
|
|
if(!CPasswordScreen::show()) { // for showing "saving settings"
|
|
|
|
|
2019-04-27 10:41:47 +00:00
|
|
|
if(_rowSel == 10) {
|
2019-04-09 23:30:27 +00:00
|
|
|
_printInverted(_display.xCentre(), 0, " Saving Settings ", true, eCentreJustify);
|
|
|
|
_printMenuText(_display.xCentre(), 35, "Press UP to", false, eCentreJustify);
|
|
|
|
_printMenuText(_display.xCentre(), 43, "confirm save", false, eCentreJustify);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
_printInverted(_display.xCentre(), 0, " Thermostat Mode ", true, eCentreJustify);
|
2019-05-11 02:18:06 +00:00
|
|
|
_display.drawBitmap(3, 14, thermostatIcon, thermostatWidth, thermostatHeight, WHITE);
|
|
|
|
float fTemp = _window;
|
|
|
|
if(NVstore.getDegFMode()) {
|
|
|
|
fTemp = fTemp * 9 / 5;
|
|
|
|
sprintf(msg, "%.1f\367F", fTemp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sprintf(msg, "%.1f\367C", fTemp);
|
|
|
|
}
|
2019-04-27 10:41:47 +00:00
|
|
|
_printMenuText(Column, Line2, msg, _rowSel == 3);
|
2019-04-09 23:30:27 +00:00
|
|
|
switch(_thermoMode) {
|
|
|
|
case 1:
|
2019-04-27 10:41:47 +00:00
|
|
|
_printMenuText(Column, Line3, "Deadband", _rowSel == 4);
|
2019-04-09 23:30:27 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2019-04-27 10:41:47 +00:00
|
|
|
_printMenuText(Column, Line3, "Linear Hz", _rowSel == 4);
|
2019-04-09 23:30:27 +00:00
|
|
|
break;
|
|
|
|
default:
|
2019-04-27 10:41:47 +00:00
|
|
|
_printMenuText(Column, Line3, "Standard", _rowSel == 4);
|
2019-04-09 23:30:27 +00:00
|
|
|
break;
|
|
|
|
}
|
2019-04-27 10:41:47 +00:00
|
|
|
if(_cyclicMode.isEnabled()) {
|
2019-05-11 02:18:06 +00:00
|
|
|
float fTemp = _cyclicMode.Stop+1;
|
|
|
|
if(NVstore.getDegFMode()) {
|
|
|
|
fTemp = fTemp * 9 / 5;
|
|
|
|
sprintf(msg, "\352>%.0f\367F", fTemp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sprintf(msg, "\352>%.0f\367C", fTemp);
|
|
|
|
}
|
2019-04-09 23:30:27 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
strcpy(msg, "OFF");
|
|
|
|
}
|
2019-04-27 10:41:47 +00:00
|
|
|
_printMenuText(Column, Line1, msg, _rowSel == 1);
|
|
|
|
if(_cyclicMode.isEnabled()) {
|
2019-05-11 02:18:06 +00:00
|
|
|
float fTemp = _cyclicMode.Start;
|
|
|
|
if(NVstore.getDegFMode()) {
|
|
|
|
fTemp = fTemp * 9 / 5;
|
|
|
|
sprintf(msg, "\352<%.0f\367F", fTemp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sprintf(msg, "\352<%.0f\367C", fTemp);
|
|
|
|
}
|
2019-04-27 10:41:47 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
strcpy(msg, "");
|
|
|
|
}
|
2019-05-11 02:18:06 +00:00
|
|
|
_printMenuText(Column + 42, Line1, msg, _rowSel == 2);
|
2019-04-09 23:30:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CThermostatModeScreen::animate()
|
|
|
|
{
|
2019-04-27 10:41:47 +00:00
|
|
|
if(_rowSel != 10) {
|
2019-04-09 23:30:27 +00:00
|
|
|
int yPos = 53;
|
|
|
|
int xPos = _display.xCentre();
|
|
|
|
const char* pMsg = NULL;
|
|
|
|
switch(_rowSel) {
|
|
|
|
case 0:
|
|
|
|
_printMenuText(xPos, yPos, " \021 \030Edit Exit \020 ", true, eCentreJustify);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
_display.drawFastHLine(0, 52, 128, WHITE);
|
2019-04-27 10:41:47 +00:00
|
|
|
pMsg = " Heater shuts down over set point. ";
|
|
|
|
_scrollMessage(56, pMsg, _scrollChar);
|
2019-04-09 23:30:27 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2019-04-27 10:41:47 +00:00
|
|
|
_display.drawFastHLine(0, 52, 128, WHITE);
|
|
|
|
pMsg = " Heater restarts below setpoint. ";
|
|
|
|
_scrollMessage(56, pMsg, _scrollChar);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
_display.drawFastHLine(0, 52, 128, WHITE);
|
|
|
|
pMsg = " User defined window for custom thermostat modes. ";
|
|
|
|
_scrollMessage(56, pMsg, _scrollChar);
|
|
|
|
break;
|
|
|
|
case 4:
|
2019-04-09 23:30:27 +00:00
|
|
|
_display.drawFastHLine(0, 52, 128, WHITE);
|
|
|
|
switch(_thermoMode) {
|
|
|
|
case 1:
|
2019-04-27 10:41:47 +00:00
|
|
|
pMsg = " The user defined window sets the thermostat's hysteresis. ";
|
2019-04-09 23:30:27 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2019-04-27 10:41:47 +00:00
|
|
|
pMsg = " The pump rate is adjusted linearly across the set point window. ";
|
2019-04-09 23:30:27 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pMsg = " Use heater's standard thermostat control. ";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(pMsg)
|
2019-04-27 10:41:47 +00:00
|
|
|
_scrollMessage(56, pMsg, _scrollChar);
|
2019-04-09 23:30:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CThermostatModeScreen::keyHandler(uint8_t event)
|
|
|
|
{
|
|
|
|
if(event & keyPressed) {
|
2019-04-18 11:02:39 +00:00
|
|
|
_keyRepeat = 0; // unlock hold function
|
2019-04-09 23:30:27 +00:00
|
|
|
// press LEFT to select previous screen
|
|
|
|
if(event & key_Left) {
|
|
|
|
switch(_rowSel) {
|
|
|
|
case 0:
|
|
|
|
_ScreenManager.prevMenu();
|
|
|
|
break;
|
2019-04-27 10:41:47 +00:00
|
|
|
case 4:
|
|
|
|
_scrollChar = 0;
|
2019-04-09 23:30:27 +00:00
|
|
|
case 1:
|
2019-04-27 10:41:47 +00:00
|
|
|
case 2:
|
2019-04-09 23:30:27 +00:00
|
|
|
case 3:
|
|
|
|
_adjust(-1);
|
|
|
|
break;
|
2019-04-27 10:41:47 +00:00
|
|
|
case 10:
|
2019-04-09 23:30:27 +00:00
|
|
|
_rowSel = 0; // abort save
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// press RIGHT to select next screen
|
|
|
|
if(event & key_Right) {
|
|
|
|
switch(_rowSel) {
|
|
|
|
case 0:
|
|
|
|
_ScreenManager.nextMenu();
|
|
|
|
break;
|
2019-04-27 10:41:47 +00:00
|
|
|
case 4:
|
|
|
|
_scrollChar = 0;
|
2019-04-09 23:30:27 +00:00
|
|
|
case 1:
|
2019-04-27 10:41:47 +00:00
|
|
|
case 2:
|
2019-04-09 23:30:27 +00:00
|
|
|
case 3:
|
|
|
|
_adjust(+1);
|
|
|
|
break;
|
2019-04-27 10:41:47 +00:00
|
|
|
case 10:
|
2019-04-09 23:30:27 +00:00
|
|
|
_rowSel = 0; // abort save
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(event & key_Down) {
|
2019-04-27 10:41:47 +00:00
|
|
|
if(_rowSel != 0) {
|
|
|
|
_scrollChar = 0;
|
2019-04-09 23:30:27 +00:00
|
|
|
_rowSel--;
|
2019-04-27 10:41:47 +00:00
|
|
|
if(_rowSel == 2 && !_cyclicMode.isEnabled())
|
|
|
|
_rowSel--;
|
2019-04-09 23:30:27 +00:00
|
|
|
LOWERLIMIT(_rowSel, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// UP press
|
|
|
|
if(event & key_Up) {
|
|
|
|
switch(_rowSel) {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
2019-04-27 10:41:47 +00:00
|
|
|
_scrollChar = 0;
|
2019-04-09 23:30:27 +00:00
|
|
|
_rowSel++;
|
2019-04-27 10:41:47 +00:00
|
|
|
if(_rowSel == 2 && !_cyclicMode.isEnabled())
|
|
|
|
_rowSel++;
|
|
|
|
UPPERLIMIT(_rowSel, 4);
|
2019-04-09 23:30:27 +00:00
|
|
|
break;
|
2019-04-27 10:41:47 +00:00
|
|
|
case 10: // confirmed save
|
2019-04-09 23:30:27 +00:00
|
|
|
_showStoringMessage();
|
|
|
|
NVstore.setThermostatMethodMode(_thermoMode);
|
|
|
|
NVstore.setThermostatMethodWindow(_window);
|
|
|
|
NVstore.setCyclicMode(_cyclicMode);
|
|
|
|
saveNV();
|
|
|
|
_rowSel = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// CENTRE press
|
|
|
|
if(event & key_Centre) {
|
|
|
|
switch(_rowSel) {
|
|
|
|
case 0:
|
2019-05-29 08:01:51 +00:00
|
|
|
_ScreenManager.selectMenu(CScreenManager::RootMenuLoop, CScreenManager::SettingsUI); // force return to main menu
|
2019-04-09 23:30:27 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
2019-04-27 10:41:47 +00:00
|
|
|
case 4:
|
|
|
|
_rowSel = 10;
|
2019-04-09 23:30:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ScreenManager.reqUpdate();
|
|
|
|
}
|
2019-04-18 11:02:39 +00:00
|
|
|
if(event & keyRepeat) {
|
|
|
|
_keyRepeat++;
|
|
|
|
if((event & key_Down) && (keyRepeat >= 4)) {
|
|
|
|
_keyRepeat = -1;
|
|
|
|
if(_rowSel == 0) {
|
|
|
|
_ScreenManager.selectMenu(CScreenManager::BranchMenu, CScreenManager::FontDumpUI);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(event & keyReleased) {
|
|
|
|
_keyRepeat = -1;
|
|
|
|
}
|
2019-04-09 23:30:27 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CThermostatModeScreen::_adjust(int dir)
|
|
|
|
{
|
|
|
|
switch(_rowSel) {
|
2019-04-27 10:41:47 +00:00
|
|
|
case 1:
|
|
|
|
_cyclicMode.Stop += dir;
|
|
|
|
LOWERLIMIT(_cyclicMode.Stop, 0);
|
|
|
|
UPPERLIMIT(_cyclicMode.Stop, 10);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
_cyclicMode.Start += dir;
|
2019-05-11 23:01:22 +00:00
|
|
|
LOWERLIMIT(_cyclicMode.Start, -20);
|
2019-04-27 10:41:47 +00:00
|
|
|
UPPERLIMIT(_cyclicMode.Start, 0);
|
|
|
|
break;
|
|
|
|
case 3: // window
|
2019-04-09 23:30:27 +00:00
|
|
|
_window += (dir * 0.1);
|
|
|
|
UPPERLIMIT(_window, 6.3);
|
|
|
|
LOWERLIMIT(_window, 0.2);
|
|
|
|
break;
|
2019-04-27 10:41:47 +00:00
|
|
|
case 4: // thermostat mode
|
2019-04-09 23:30:27 +00:00
|
|
|
_thermoMode += dir;
|
|
|
|
ROLLLOWERLIMIT(_thermoMode, 0, 2);
|
|
|
|
ROLLUPPERLIMIT(_thermoMode, 2, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|