mirror of
https://github.com/thooge/esp32-nmea2000-obp60.git
synced 2026-01-26 08:13:05 +01:00
318 lines
11 KiB
C++
318 lines
11 KiB
C++
#if defined BOARD_OBP60S3 || defined BOARD_OBP40S3
|
|
|
|
#include "Pagedata.h"
|
|
#include "OBP60Extensions.h"
|
|
#include "BoatDataCalibration.h"
|
|
#include "OBPDataOperations.h"
|
|
#include "OBPcharts.h"
|
|
|
|
class PageOneValue : public Page {
|
|
private:
|
|
GwLog* logger;
|
|
|
|
enum PageMode {
|
|
VALUE,
|
|
BOTH,
|
|
CHART
|
|
};
|
|
enum DisplayMode {
|
|
FULL,
|
|
HALF
|
|
};
|
|
|
|
static constexpr char HORIZONTAL = 'H';
|
|
static constexpr char VERTICAL = 'V';
|
|
static constexpr int8_t FULL_SIZE = 0;
|
|
static constexpr int8_t HALF_SIZE_TOP = 1;
|
|
static constexpr int8_t HALF_SIZE_BOTTOM = 2;
|
|
|
|
static constexpr bool PRNT_NAME = true;
|
|
static constexpr bool NO_PRNT_NAME = false;
|
|
static constexpr bool PRNT_VALUE = true;
|
|
static constexpr bool NO_PRNT_VALUE = false;
|
|
|
|
int width; // Screen width
|
|
int height; // Screen height
|
|
|
|
bool keylock = false; // Keylock
|
|
PageMode pageMode = VALUE; // Page display mode
|
|
int8_t dataIntv = 1; // Update interval for wind history chart:
|
|
// (1)|(2)|(3)|(4)|(8) x 240 seconds for 4, 8, 12, 16, 32 min. history chart
|
|
|
|
// String lengthformat;
|
|
bool useSimuData;
|
|
bool holdValues;
|
|
String flashLED;
|
|
String backlightMode;
|
|
String tempFormat;
|
|
|
|
// Old values for hold function
|
|
String sValue1Old = "";
|
|
String unit1Old = "";
|
|
|
|
// Data buffer pointer (owned by HstryBuffers)
|
|
RingBuffer<uint16_t>* dataHstryBuf = nullptr;
|
|
std::unique_ptr<Chart> dataChart; // Chart object
|
|
|
|
// display data value in display <mode> [FULL|HALF]
|
|
void showData(GwApi::BoatValue* bValue1, DisplayMode mode)
|
|
{
|
|
int nameXoff, nameYoff, unitXoff, unitYoff, value1Xoff, value1Yoff;
|
|
const GFXfont *nameFnt, *unitFnt, *valueFnt1, *valueFnt2, *valueFnt3;
|
|
|
|
if (mode == FULL) { // full size data display
|
|
nameXoff = 0;
|
|
nameYoff = 0;
|
|
nameFnt = &Ubuntu_Bold32pt8b;
|
|
unitXoff = 0;
|
|
unitYoff = 0;
|
|
unitFnt = &Ubuntu_Bold20pt8b;
|
|
value1Xoff = 0;
|
|
value1Yoff = 0;
|
|
valueFnt1 = &Ubuntu_Bold20pt8b;
|
|
valueFnt2 = &Ubuntu_Bold32pt8b;
|
|
valueFnt3 = &DSEG7Classic_BoldItalic60pt7b;
|
|
} else { // half size data and chart display
|
|
nameXoff = -10;
|
|
nameYoff = -34;
|
|
nameFnt = &Ubuntu_Bold20pt8b;
|
|
unitXoff = 63;
|
|
unitYoff = -119;
|
|
unitFnt = &Ubuntu_Bold12pt8b;
|
|
valueFnt1 = &Ubuntu_Bold12pt8b;
|
|
value1Xoff = 153;
|
|
value1Yoff = -119;
|
|
valueFnt2 = &Ubuntu_Bold20pt8b;
|
|
valueFnt3 = &DSEG7Classic_BoldItalic42pt7b;
|
|
}
|
|
|
|
String name1 = xdrDelete(bValue1->getName()); // Value name
|
|
name1 = name1.substring(0, 6); // String length limit for value name
|
|
calibrationData.calibrateInstance(bValue1, logger); // Check if boat data value is to be calibrated
|
|
double value1 = bValue1->value; // Value as double in SI unit
|
|
bool valid1 = bValue1->valid; // Valid information
|
|
String sValue1 = formatValue(bValue1, *commonData).svalue; // Formatted value as string including unit conversion and switching decimal places
|
|
String unit1 = formatValue(bValue1, *commonData).unit; // Unit of value
|
|
|
|
// Show name
|
|
getdisplay().setTextColor(commonData->fgcolor);
|
|
getdisplay().setFont(nameFnt);
|
|
getdisplay().setCursor(20 + nameXoff, 100 + nameYoff);
|
|
getdisplay().print(name1); // name
|
|
|
|
// Show unit
|
|
getdisplay().setFont(unitFnt);
|
|
getdisplay().setCursor(305 + unitXoff, 240 + unitYoff);
|
|
|
|
if (holdValues) {
|
|
getdisplay().print(unit1Old); // name
|
|
} else {
|
|
getdisplay().print(unit1); // name
|
|
}
|
|
|
|
// Switch font depending on value format and adjust position
|
|
if (bValue1->getFormat() == "formatLatitude" || bValue1->getFormat() == "formatLongitude") {
|
|
getdisplay().setFont(valueFnt1);
|
|
getdisplay().setCursor(20 + value1Xoff, 180 + value1Yoff);
|
|
} else if (bValue1->getFormat() == "formatTime" || bValue1->getFormat() == "formatDate") {
|
|
getdisplay().setFont(valueFnt2);
|
|
getdisplay().setCursor(20 + value1Xoff, 200 + value1Yoff);
|
|
} else {
|
|
getdisplay().setFont(valueFnt3);
|
|
getdisplay().setCursor(20 + value1Xoff, 240 + value1Yoff);
|
|
}
|
|
|
|
// Show bus data
|
|
if (!holdValues || useSimuData) {
|
|
getdisplay().print(sValue1); // Real value as formated string
|
|
} else {
|
|
getdisplay().print(sValue1Old); // Old value as formated string
|
|
}
|
|
|
|
if (valid1 == true) {
|
|
sValue1Old = sValue1; // Save the old value
|
|
unit1Old = unit1; // Save the old unit
|
|
}
|
|
}
|
|
|
|
public:
|
|
PageOneValue(CommonData& common)
|
|
{
|
|
commonData = &common;
|
|
logger = commonData->logger;
|
|
LOG_DEBUG(GwLog::LOG, "Instantiate PageOneValue");
|
|
|
|
width = getdisplay().width(); // Screen width
|
|
height = getdisplay().height(); // Screen height
|
|
|
|
// Get config data
|
|
// lengthformat = commonData->config->getString(commonData->config->lengthFormat);
|
|
useSimuData = commonData->config->getBool(commonData->config->useSimuData);
|
|
holdValues = commonData->config->getBool(commonData->config->holdvalues);
|
|
flashLED = commonData->config->getString(commonData->config->flashLED);
|
|
backlightMode = commonData->config->getString(commonData->config->backlight);
|
|
tempFormat = commonData->config->getString(commonData->config->tempFormat); // [K|°C|°F]
|
|
}
|
|
|
|
virtual void setupKeys()
|
|
{
|
|
Page::setupKeys();
|
|
|
|
#if defined BOARD_OBP60S3
|
|
constexpr int ZOOM_KEY = 4;
|
|
#elif defined BOARD_OBP40S3
|
|
constexpr int ZOOM_KEY = 1;
|
|
#endif
|
|
|
|
if (dataHstryBuf) { // show "Mode" key only if chart supported boat data type is available
|
|
commonData->keydata[0].label = "MODE";
|
|
commonData->keydata[ZOOM_KEY].label = "ZOOM";
|
|
} else {
|
|
commonData->keydata[0].label = "";
|
|
commonData->keydata[ZOOM_KEY].label = "";
|
|
}
|
|
}
|
|
|
|
// Key functions
|
|
virtual int handleKey(int key)
|
|
{
|
|
if (dataHstryBuf) { // if boat data type supports charts
|
|
|
|
// Set page mode: value | value/half chart | full chart
|
|
if (key == 1) {
|
|
switch (pageMode) {
|
|
case VALUE:
|
|
pageMode = BOTH;
|
|
break;
|
|
case BOTH:
|
|
pageMode = CHART;
|
|
break;
|
|
case CHART:
|
|
pageMode = VALUE;
|
|
break;
|
|
}
|
|
return 0; // Commit the key
|
|
}
|
|
|
|
// Set time frame to show for history chart
|
|
#if defined BOARD_OBP60S3
|
|
if (key == 5) {
|
|
#elif defined BOARD_OBP40S3
|
|
if (key == 2) {
|
|
#endif
|
|
if (dataIntv == 1) {
|
|
dataIntv = 2;
|
|
} else if (dataIntv == 2) {
|
|
dataIntv = 3;
|
|
} else if (dataIntv == 3) {
|
|
dataIntv = 4;
|
|
} else if (dataIntv == 4) {
|
|
dataIntv = 8;
|
|
} else {
|
|
dataIntv = 1;
|
|
}
|
|
return 0; // Commit the key
|
|
}
|
|
}
|
|
|
|
// Keylock function
|
|
if (key == 11) { // Code for keylock
|
|
commonData->keylock = !commonData->keylock;
|
|
return 0; // Commit the key
|
|
}
|
|
return key;
|
|
}
|
|
|
|
virtual void displayNew(PageData& pageData)
|
|
{
|
|
#ifdef BOARD_OBP60S3
|
|
// Clear optical warning
|
|
if (flashLED == "Limit Violation") {
|
|
setBlinkingLED(false);
|
|
setFlashLED(false);
|
|
}
|
|
#endif
|
|
// buffer initialization will fail, if page is default page, because <displayNew> is not executed at system start for default page
|
|
if (!dataChart) { // Create chart objects if they don't exist
|
|
|
|
GwApi::BoatValue* bValue1 = pageData.values[0]; // Page boat data element
|
|
String bValName1 = bValue1->getName(); // Value name
|
|
String bValFormat = bValue1->getFormat(); // Value format
|
|
|
|
dataHstryBuf = pageData.hstryBuffers->getBuffer(bValName1);
|
|
|
|
if (dataHstryBuf) {
|
|
dataChart.reset(new Chart(*dataHstryBuf, Chart::dfltChrtDta[bValFormat].range, *commonData, useSimuData));
|
|
LOG_DEBUG(GwLog::DEBUG, "PageOneValue: Created chart objects for %s", bValName1);
|
|
} else {
|
|
LOG_DEBUG(GwLog::DEBUG, "PageOneValue: No chart objects available for %s", bValName1);
|
|
}
|
|
}
|
|
|
|
setupKeys(); // adjust <mode> key depending on chart supported boat data type
|
|
}
|
|
|
|
int displayPage(PageData& pageData)
|
|
{
|
|
LOG_DEBUG(GwLog::LOG, "Display PageOneValue");
|
|
|
|
// Get boat value for page
|
|
GwApi::BoatValue* bValue1 = pageData.values[0]; // Page boat data element
|
|
|
|
// Optical warning by limit violation (unused)
|
|
if (String(flashLED) == "Limit Violation") {
|
|
setBlinkingLED(false);
|
|
setFlashLED(false);
|
|
}
|
|
|
|
if (bValue1 == NULL)
|
|
return PAGE_OK; // no data, no page to display
|
|
|
|
LOG_DEBUG(GwLog::DEBUG, "PageOneValue: printing %s, %.3f", bValue1->getName().c_str(), bValue1->value);
|
|
|
|
// Draw page
|
|
//***********************************************************
|
|
|
|
getdisplay().setPartialWindow(0, 0, width, height); // Set partial update
|
|
|
|
if (pageMode == VALUE || dataHstryBuf == nullptr) {
|
|
// show only data value; ignore other pageMode options if no chart supported boat data history buffer is available
|
|
showData(bValue1, FULL);
|
|
|
|
} else if (pageMode == CHART) { // show only data chart
|
|
if (dataChart) {
|
|
dataChart->showChrt(HORIZONTAL, FULL_SIZE, dataIntv, PRNT_NAME, PRNT_VALUE, *bValue1);
|
|
}
|
|
|
|
} else if (pageMode == BOTH) { // show data value and chart
|
|
showData(bValue1, HALF);
|
|
if (dataChart) {
|
|
dataChart->showChrt(HORIZONTAL, HALF_SIZE_BOTTOM, dataIntv, NO_PRNT_NAME, NO_PRNT_VALUE, *bValue1);
|
|
}
|
|
}
|
|
|
|
return PAGE_UPDATE;
|
|
};
|
|
};
|
|
|
|
static Page* createPage(CommonData& common)
|
|
{
|
|
return new PageOneValue(common);
|
|
}
|
|
|
|
/**
|
|
* with the code below we make this page known to the PageTask
|
|
* we give it a type (name) that can be selected in the config
|
|
* we define which function is to be called
|
|
* and we provide the number of user parameters we expect
|
|
* this will be number of BoatValue pointers in pageData.values
|
|
*/
|
|
PageDescription registerPageOneValue(
|
|
"OneValue", // Page name
|
|
createPage, // Action
|
|
1, // Number of bus values depends on selection in Web configuration
|
|
true // Show display header on/off
|
|
);
|
|
|
|
#endif
|