ESP32_ChinaDieselHeater_Con.../src/OLED/MQTTScreen.cpp
Ray Jones 4eddcd0f1e STA only mode
Fixed MQTT topic prefix
2020-04-08 07:51:52 +10:00

198 lines
4.6 KiB
C++

/*
* 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/>.
*
*/
#include "MQTTScreen.h"
#include "KeyPad.h"
#include "../Utility/helpers.h"
#include "../WiFi/ABMQTT.h"
#include "../WiFi/BTCWifi.h"
#include "../Utility/NVStorage.h"
#include "fonts/Arial.h"
///////////////////////////////////////////////////////////////////////////
//
// CMQTTScreen
//
// This screen presents sundry information
// eg WiFi status
//
///////////////////////////////////////////////////////////////////////////
#define STA_HOLD_TIME 10
static const int LIMIT_AWAY = 0;
static const int LIMIT_LEFT = 1;
static const int LIMIT_RIGHT = 2;
CMQTTScreen::CMQTTScreen(C128x64_OLED& display, CScreenManager& mgr) : CUIEditScreen(display, mgr)
{
_initUI();
}
void
CMQTTScreen::onSelect()
{
CScreen::onSelect();
_initUI();
_IPScrollPos = 0;
_UsernameScrollPos = 0;
}
bool
CMQTTScreen::show()
{
CScreen::show();
_display.clearDisplay();
_showTitle("MQTT status");
int yPos = 18;
if(NVstore.getMQTTinfo().enabled) {
if(isWifiSTAConnected()) {
if(isMQTTconnected())
_printMenuText(0, yPos, "CONNECTED");
else
_printInverted(0, yPos, " DISCONNECTED ", true);
}
else {
_printInverted(0, yPos, " STA NOT ACTIVE ", true);
}
}
else {
_printMenuText(0, yPos, "DISABLED");
}
char msg[40];
sprintf(msg, "QoS:%d", NVstore.getMQTTinfo().qos);
_printMenuText(_display.width(), yPos, msg, false, eRightJustify);
yPos += _display.textHeight() + 2;
yPos += _display.textHeight() + 2;
yPos += _display.textHeight() + 2;
_printMenuText(0, yPos, getTopicPrefix());
return true;
}
bool
CMQTTScreen::animate()
{
static bool subrate = false;
subrate = !subrate;
String scrollable;
int yPos = 18;
scrollable = " ";
scrollable += NVstore.getMQTTinfo().host;
scrollable += ":";
scrollable += NVstore.getMQTTinfo().port;
scrollable += " ";
if(scrollable.length() < 28) {
scrollable.trim(); // will fit OK, remove added padding that makes scrolled string more readable
}
if(subrate) {
_IPScrollPos++;
if(_IPScrollPos > ( (int)scrollable.length() - 21) )
_IPScrollPos = 0;
}
yPos += _display.textHeight() + 2;
_printMenuText(0, yPos, scrollable.substring(_IPScrollPos, _IPScrollPos+21).c_str());
scrollable = " ";
scrollable += NVstore.getMQTTinfo().username;
scrollable += "/";
scrollable += NVstore.getMQTTinfo().password;
scrollable += " ";
if(scrollable.length() < 28) {
scrollable.trim(); // will fit OK, remove added padding that makes scrolled string more readable
}
if(subrate) {
_UsernameScrollPos++;
if(_UsernameScrollPos > ( (int)scrollable.length() - 21) )
_UsernameScrollPos = 0;
}
yPos += _display.textHeight() + 2;
_printMenuText(0, yPos, scrollable.substring(_UsernameScrollPos, _UsernameScrollPos+21).c_str());
return true;
}
bool
CMQTTScreen::keyHandler(uint8_t event)
{
if(event & keyPressed) {
_repeatCount = 0;
// press LEFT
if(event & key_Left) {
switch(_rowSel) {
case 0:
_ScreenManager.prevMenu();
break;
}
}
// press RIGHT
if(event & key_Right) {
switch(_rowSel) {
case 0:
_ScreenManager.nextMenu();
break;
}
}
// press UP
if(event & key_Up) {
// _rowSel++;
UPPERLIMIT(_rowSel, 2);
}
// press DOWN
if(event & key_Down) {
// _rowSel--;
LOWERLIMIT(_rowSel, 0);
}
_ScreenManager.reqUpdate();
}
if(event & keyRepeat) { // track key hold time
if(event & key_Centre) {
_repeatCount++;
}
}
if(event & keyReleased) {
if(event & key_Centre) {
if(_rowSel == 0) {
_ScreenManager.selectMenu(CScreenManager::RootMenuLoop); // force return to main menu
}
if(_rowSel == 1) {
}
if(_rowSel == 2) {
}
}
_repeatCount = 0;
}
return true;
}