130 lines
4.8 KiB
C++
130 lines
4.8 KiB
C++
#if defined BOARD_OBP60S3 || defined BOARD_OBP40S3
|
|
|
|
#include "Pagedata.h"
|
|
#include "OBP60Extensions.h"
|
|
|
|
class PageOneValue : public Page
|
|
{
|
|
public:
|
|
PageOneValue(CommonData &common){
|
|
commonData = &common;
|
|
common.logger->logDebug(GwLog::LOG,"Instantiate PageOneValue");
|
|
}
|
|
|
|
virtual int handleKey(int key){
|
|
// Code for keylock
|
|
if(key == 11){
|
|
commonData->keylock = !commonData->keylock;
|
|
return 0; // Commit the key
|
|
}
|
|
return key;
|
|
}
|
|
|
|
virtual void displayPage(PageData &pageData){
|
|
GwConfigHandler *config = commonData->config;
|
|
GwLog *logger = commonData->logger;
|
|
|
|
// Old values for hold function
|
|
static String svalue1old = "";
|
|
static String unit1old = "";
|
|
|
|
// Get config data
|
|
String lengthformat = config->getString(config->lengthFormat);
|
|
// bool simulation = config->getBool(config->useSimuData);
|
|
bool holdvalues = config->getBool(config->holdvalues);
|
|
String flashLED = config->getString(config->flashLED);
|
|
String backlightMode = config->getString(config->backlight);
|
|
|
|
// Get boat values
|
|
GwApi::BoatValue *bvalue1 = pageData.values[0]; // First element in list (only one value by PageOneValue)
|
|
String name1 = xdrDelete(bvalue1->getName()); // Value name
|
|
name1 = name1.substring(0, 6); // String length limit for value name
|
|
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
|
|
|
|
// Optical warning by limit violation (unused)
|
|
if(String(flashLED) == "Limit Violation"){
|
|
setBlinkingLED(false);
|
|
setFlashLED(false);
|
|
}
|
|
|
|
// Logging boat values
|
|
if (bvalue1 == NULL) return;
|
|
LOG_DEBUG(GwLog::LOG,"Drawing at PageOneValue, %s: %f", name1.c_str(), value1);
|
|
|
|
// Draw page
|
|
//***********************************************************
|
|
|
|
/// Set display in partial refresh mode
|
|
getdisplay().setPartialWindow(0, 0, getdisplay().width(), getdisplay().height()); // Set partial update
|
|
|
|
// Show name
|
|
getdisplay().setTextColor(commonData->fgcolor);
|
|
getdisplay().setFont(&Ubuntu_Bold32pt7b);
|
|
getdisplay().setCursor(20, 100);
|
|
getdisplay().print(name1); // Page name
|
|
|
|
// Show unit
|
|
getdisplay().setFont(&Ubuntu_Bold20pt8b);
|
|
getdisplay().setCursor(270, 100);
|
|
if(holdvalues == false){
|
|
getdisplay().print(unit1); // Unit
|
|
}
|
|
else{
|
|
getdisplay().print(unit1old);
|
|
}
|
|
|
|
// Switch font if format for any values
|
|
if(bvalue1->getFormat() == "formatLatitude" || bvalue1->getFormat() == "formatLongitude"){
|
|
getdisplay().setFont(&Ubuntu_Bold20pt8b);
|
|
getdisplay().setCursor(20, 180);
|
|
}
|
|
else if(bvalue1->getFormat() == "formatTime" || bvalue1->getFormat() == "formatDate"){
|
|
getdisplay().setFont(&Ubuntu_Bold32pt7b);
|
|
getdisplay().setCursor(20, 200);
|
|
}
|
|
else{
|
|
getdisplay().setFont(&DSEG7Classic_BoldItalic60pt7b);
|
|
getdisplay().setCursor(20, 240);
|
|
}
|
|
|
|
// Show bus data
|
|
if(holdvalues == false){
|
|
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
|
|
}
|
|
|
|
// Update display
|
|
getdisplay().nextPage(); // Partial update (fast)
|
|
|
|
};
|
|
};
|
|
|
|
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
|