Finishing page for Airmar DST810
This commit is contained in:
		
							parent
							
								
									82a1333aec
								
							
						
					
					
						commit
						c594464997
					
				| 
						 | 
					@ -320,11 +320,11 @@ FormatedData formatValue(GwApi::BoatValue *value, CommonData &commondata){
 | 
				
			||||||
        else{
 | 
					        else{
 | 
				
			||||||
            temp = 296.0 + float(random(0, 10)) / 10.0;
 | 
					            temp = 296.0 + float(random(0, 10)) / 10.0;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        if(String(tempFormat) == "°C"){
 | 
					        if(String(tempFormat) == "C"){
 | 
				
			||||||
            temp = temp - 273.15;
 | 
					            temp = temp - 273.15;
 | 
				
			||||||
            result.unit = "C";
 | 
					            result.unit = "C";
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        else if(String(tempFormat) == "°F"){
 | 
					        else if(String(tempFormat) == "F"){
 | 
				
			||||||
            temp = temp - 459.67;
 | 
					            temp = temp - 459.67;
 | 
				
			||||||
            result.unit = "F";
 | 
					            result.unit = "F";
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,343 @@
 | 
				
			||||||
 | 
					#include "Pagedata.h"
 | 
				
			||||||
 | 
					#include "OBP60ExtensionPort.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					class PageDST810 : public Page
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    bool keylock = false;               // Keylock
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    public:
 | 
				
			||||||
 | 
					    PageDST810(CommonData &comon){
 | 
				
			||||||
 | 
					        comon.logger->logDebug(GwLog::LOG,"Show PageDST810");
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    virtual int handleKey(int key){
 | 
				
			||||||
 | 
					        if(key == 11){                  // Code for keylock
 | 
				
			||||||
 | 
					            keylock = !keylock;         // Toggle keylock
 | 
				
			||||||
 | 
					            return 0;                   // Commit the key
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        return key;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    virtual void displayPage(CommonData &commonData, PageData &pageData){
 | 
				
			||||||
 | 
					        GwConfigHandler *config = commonData.config;
 | 
				
			||||||
 | 
					        GwLog *logger=commonData.logger;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Old values for hold function
 | 
				
			||||||
 | 
					        static String svalue1old = "";
 | 
				
			||||||
 | 
					        static String unit1old = "";
 | 
				
			||||||
 | 
					        static String svalue2old = "";
 | 
				
			||||||
 | 
					        static String unit2old = "";
 | 
				
			||||||
 | 
					        static String svalue3old = "";
 | 
				
			||||||
 | 
					        static String unit3old = "";
 | 
				
			||||||
 | 
					        static String svalue4old = "";
 | 
				
			||||||
 | 
					        static String unit4old = "";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Get config data
 | 
				
			||||||
 | 
					        String lengthformat = config->getString(config->lengthFormat);
 | 
				
			||||||
 | 
					        bool simulation = config->getBool(config->useSimuData);
 | 
				
			||||||
 | 
					        String displaycolor = config->getString(config->displaycolor);
 | 
				
			||||||
 | 
					        bool refresh = config->getBool(config->refresh);
 | 
				
			||||||
 | 
					        bool holdvalues = config->getBool(config->holdvalues);
 | 
				
			||||||
 | 
					        String flashLED = config->getString(config->flashLED);
 | 
				
			||||||
 | 
					        String backlightMode = config->getString(config->backlight);
 | 
				
			||||||
 | 
					        
 | 
				
			||||||
 | 
					        // Get boat values #1
 | 
				
			||||||
 | 
					        GwApi::BoatValue *bvalue1 = pageData.values[0]; // First element in list (only one value by PageOneValue)
 | 
				
			||||||
 | 
					        String name1 = bvalue1->getName().c_str();      // 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
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Get boat values #2
 | 
				
			||||||
 | 
					        GwApi::BoatValue *bvalue2 = pageData.values[1]; // Second element in list (only one value by PageOneValue)
 | 
				
			||||||
 | 
					        String name2 = bvalue2->getName().c_str();      // Value name
 | 
				
			||||||
 | 
					        name2 = name2.substring(0, 6);                  // String length limit for value name
 | 
				
			||||||
 | 
					        double value2 = bvalue2->value;                 // Value as double in SI unit
 | 
				
			||||||
 | 
					        bool valid2 = bvalue2->valid;                   // Valid information 
 | 
				
			||||||
 | 
					        String svalue2 = formatValue(bvalue2, commonData).svalue;    // Formatted value as string including unit conversion and switching decimal places
 | 
				
			||||||
 | 
					        String unit2 = formatValue(bvalue2, commonData).unit;        // Unit of value
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Get boat values #3
 | 
				
			||||||
 | 
					        GwApi::BoatValue *bvalue3 = pageData.values[2]; // Second element in list (only one value by PageOneValue)
 | 
				
			||||||
 | 
					        String name3 = bvalue3->getName().c_str();      // Value name
 | 
				
			||||||
 | 
					        name3 = name3.substring(0, 6);                  // String length limit for value name
 | 
				
			||||||
 | 
					        double value3 = bvalue3->value;                 // Value as double in SI unit
 | 
				
			||||||
 | 
					        bool valid3 = bvalue3->valid;                   // Valid information 
 | 
				
			||||||
 | 
					        String svalue3 = formatValue(bvalue3, commonData).svalue;    // Formatted value as string including unit conversion and switching decimal places
 | 
				
			||||||
 | 
					        String unit3 = formatValue(bvalue3, commonData).unit;        // Unit of value
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Get boat values #4
 | 
				
			||||||
 | 
					        GwApi::BoatValue *bvalue4 = pageData.values[3]; // Second element in list (only one value by PageOneValue)
 | 
				
			||||||
 | 
					        String name4 = bvalue4->getName().c_str();      // Value name
 | 
				
			||||||
 | 
					        name4 = name4.substring(0, 6);                  // String length limit for value name
 | 
				
			||||||
 | 
					        double value4 = bvalue4->value;                 // Value as double in SI unit
 | 
				
			||||||
 | 
					        bool valid4 = bvalue4->valid;                   // Valid information 
 | 
				
			||||||
 | 
					        String svalue4 = formatValue(bvalue4, commonData).svalue;    // Formatted value as string including unit conversion and switching decimal places
 | 
				
			||||||
 | 
					        String unit4 = formatValue(bvalue4, commonData).unit;        // Unit of value
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Optical warning by limit violation (unused)
 | 
				
			||||||
 | 
					        if(String(flashLED) == "Limit Violation"){
 | 
				
			||||||
 | 
					            setBlinkingLED(false);
 | 
				
			||||||
 | 
					            setPortPin(OBP_FLASH_LED, false); 
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Logging boat values
 | 
				
			||||||
 | 
					        if (bvalue1 == NULL) return;
 | 
				
			||||||
 | 
					        LOG_DEBUG(GwLog::LOG,"Drawing at PageDST810, %s: %f, %s: %f, %s: %f, %s: %f", name1, value1, name2, value2, name3, value3, name4, value4);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Draw page
 | 
				
			||||||
 | 
					        //***********************************************************
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Set background color and text color
 | 
				
			||||||
 | 
					        int textcolor = GxEPD_BLACK;
 | 
				
			||||||
 | 
					        int pixelcolor = GxEPD_BLACK;
 | 
				
			||||||
 | 
					        int bgcolor = GxEPD_WHITE;
 | 
				
			||||||
 | 
					        if(displaycolor == "Normal"){
 | 
				
			||||||
 | 
					            textcolor = GxEPD_BLACK;
 | 
				
			||||||
 | 
					            pixelcolor = GxEPD_BLACK;
 | 
				
			||||||
 | 
					            bgcolor = GxEPD_WHITE;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            textcolor = GxEPD_WHITE;
 | 
				
			||||||
 | 
					            pixelcolor = GxEPD_WHITE;
 | 
				
			||||||
 | 
					            bgcolor = GxEPD_BLACK;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        // Clear display by call in obp60task.cpp in main loop
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // ############### Value 1 ################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Show name
 | 
				
			||||||
 | 
					        display.setTextColor(textcolor);
 | 
				
			||||||
 | 
					        display.setFont(&Ubuntu_Bold20pt7b);
 | 
				
			||||||
 | 
					        display.setCursor(20, 55);
 | 
				
			||||||
 | 
					        display.print("Depth");                         // Page name
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Show unit
 | 
				
			||||||
 | 
					        display.setTextColor(textcolor);
 | 
				
			||||||
 | 
					        display.setFont(&Ubuntu_Bold12pt7b);
 | 
				
			||||||
 | 
					        display.setCursor(20, 90);
 | 
				
			||||||
 | 
					        if(holdvalues == false){
 | 
				
			||||||
 | 
					            display.print(unit1);                       // Unit
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.print(unit1old);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Switch font if format for any values
 | 
				
			||||||
 | 
					        if(bvalue1->getFormat() == "formatLatitude" || bvalue1->getFormat() == "formatLongitude"){
 | 
				
			||||||
 | 
					            display.setFont(&Ubuntu_Bold20pt7b);
 | 
				
			||||||
 | 
					            display.setCursor(50, 90);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else if(bvalue1->getFormat() == "formatTime" || bvalue1->getFormat() == "formatDate"){
 | 
				
			||||||
 | 
					            display.setFont(&Ubuntu_Bold20pt7b);
 | 
				
			||||||
 | 
					            display.setCursor(170, 68);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.setFont(&DSEG7Classic_BoldItalic30pt7b);
 | 
				
			||||||
 | 
					            display.setCursor(180, 90);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Show bus data
 | 
				
			||||||
 | 
					        if(holdvalues == false){
 | 
				
			||||||
 | 
					            display.print(svalue1);                                     // Real value as formated string
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.print(svalue1old);                                  // Old value as formated string
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        if(valid1 == true){
 | 
				
			||||||
 | 
					            svalue1old = svalue1;                                       // Save the old value
 | 
				
			||||||
 | 
					            unit1old = unit1;                                           // Save the old unit
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // ############### Horizontal Line ################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Horizontal line 3 pix
 | 
				
			||||||
 | 
					        display.fillRect(0, 105, 400, 3, pixelcolor);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // ############### Value 2 ################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Show name
 | 
				
			||||||
 | 
					        display.setTextColor(textcolor);
 | 
				
			||||||
 | 
					        display.setFont(&Ubuntu_Bold20pt7b);
 | 
				
			||||||
 | 
					        display.setCursor(20, 145);
 | 
				
			||||||
 | 
					        display.print("Speed");                         // Page name
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Show unit
 | 
				
			||||||
 | 
					        display.setTextColor(textcolor);
 | 
				
			||||||
 | 
					        display.setFont(&Ubuntu_Bold12pt7b);
 | 
				
			||||||
 | 
					        display.setCursor(20, 180);
 | 
				
			||||||
 | 
					        if(holdvalues == false){
 | 
				
			||||||
 | 
					            display.print(unit2);                       // Unit
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.print(unit2old);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Switch font if format for any values
 | 
				
			||||||
 | 
					        if(bvalue2->getFormat() == "formatLatitude" || bvalue2->getFormat() == "formatLongitude"){
 | 
				
			||||||
 | 
					            display.setFont(&Ubuntu_Bold20pt7b);
 | 
				
			||||||
 | 
					            display.setCursor(50, 180);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else if(bvalue2->getFormat() == "formatTime" || bvalue2->getFormat() == "formatDate"){
 | 
				
			||||||
 | 
					            display.setFont(&Ubuntu_Bold20pt7b);
 | 
				
			||||||
 | 
					            display.setCursor(170, 158);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.setFont(&DSEG7Classic_BoldItalic30pt7b);
 | 
				
			||||||
 | 
					            display.setCursor(180, 180);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Show bus data
 | 
				
			||||||
 | 
					        if(holdvalues == false){
 | 
				
			||||||
 | 
					            display.print(svalue2);                                     // Real value as formated string
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.print(svalue2old);                                  // Old value as formated string
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        if(valid2 == true){
 | 
				
			||||||
 | 
					            svalue2old = svalue2;                                       // Save the old value
 | 
				
			||||||
 | 
					            unit2old = unit2;                                           // Save the old unit
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // ############### Horizontal Line ################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Horizontal line 3 pix
 | 
				
			||||||
 | 
					        display.fillRect(0, 195, 400, 3, pixelcolor);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // ############### Value 3 ################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Show name
 | 
				
			||||||
 | 
					        display.setTextColor(textcolor);
 | 
				
			||||||
 | 
					        display.setFont(&Ubuntu_Bold12pt7b);
 | 
				
			||||||
 | 
					        display.setCursor(20, 220);
 | 
				
			||||||
 | 
					        display.print("Log");                           // Page name
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Show unit
 | 
				
			||||||
 | 
					        display.setTextColor(textcolor);
 | 
				
			||||||
 | 
					        display.setFont(&Ubuntu_Bold8pt7b);
 | 
				
			||||||
 | 
					        display.setCursor(20, 240);
 | 
				
			||||||
 | 
					        if(holdvalues == false){
 | 
				
			||||||
 | 
					            display.print(unit3);                       // Unit
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.print(unit3old);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Switch font if format for any values
 | 
				
			||||||
 | 
					        if(bvalue3->getFormat() == "formatLatitude" || bvalue3->getFormat() == "formatLongitude"){
 | 
				
			||||||
 | 
					            display.setFont(&Ubuntu_Bold20pt7b);
 | 
				
			||||||
 | 
					            display.setCursor(50, 270);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else if(bvalue3->getFormat() == "formatTime" || bvalue3->getFormat() == "formatDate"){
 | 
				
			||||||
 | 
					            display.setFont(&Ubuntu_Bold20pt7b);
 | 
				
			||||||
 | 
					            display.setCursor(140, 248);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.setFont(&DSEG7Classic_BoldItalic20pt7b);
 | 
				
			||||||
 | 
					            display.setCursor(80, 270);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Show bus data
 | 
				
			||||||
 | 
					        if(holdvalues == false){
 | 
				
			||||||
 | 
					            display.print(svalue3);                                     // Real value as formated string
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.print(svalue3old);                                  // Old value as formated string
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        if(valid3 == true){
 | 
				
			||||||
 | 
					            svalue3old = svalue3;                                       // Save the old value
 | 
				
			||||||
 | 
					            unit3old = unit3;                                           // Save the old unit
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // ############### Vertical Line ################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Vertical line 3 pix
 | 
				
			||||||
 | 
					        display.fillRect(200, 195, 3, 75, pixelcolor);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // ############### Value 4 ################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Show name
 | 
				
			||||||
 | 
					        display.setTextColor(textcolor);
 | 
				
			||||||
 | 
					        display.setFont(&Ubuntu_Bold12pt7b);
 | 
				
			||||||
 | 
					        display.setCursor(220, 220);
 | 
				
			||||||
 | 
					        display.print("Temp");                           // Page name
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Show unit
 | 
				
			||||||
 | 
					        display.setTextColor(textcolor);
 | 
				
			||||||
 | 
					        display.setFont(&Ubuntu_Bold8pt7b);
 | 
				
			||||||
 | 
					        display.setCursor(220, 240);
 | 
				
			||||||
 | 
					        if(holdvalues == false){
 | 
				
			||||||
 | 
					            display.print(unit4);                       // Unit
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.print(unit4old);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Switch font if format for any values
 | 
				
			||||||
 | 
					        if(bvalue4->getFormat() == "formatLatitude" || bvalue4->getFormat() == "formatLongitude"){
 | 
				
			||||||
 | 
					            display.setFont(&Ubuntu_Bold12pt7b);
 | 
				
			||||||
 | 
					            display.setCursor(120, 259);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else if(bvalue4->getFormat() == "formatTime" || bvalue4->getFormat() == "formatDate"){
 | 
				
			||||||
 | 
					            display.setFont(&Ubuntu_Bold12pt7b);
 | 
				
			||||||
 | 
					            display.setCursor(150, 259);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.setFont(&DSEG7Classic_BoldItalic20pt7b);
 | 
				
			||||||
 | 
					            display.setCursor(280, 270);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Show bus data
 | 
				
			||||||
 | 
					        if(holdvalues == false){
 | 
				
			||||||
 | 
					            display.print(svalue4);                                     // Real value as formated string
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.print(svalue4old);                                  // Old value as formated string
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        if(valid4 == true){
 | 
				
			||||||
 | 
					            svalue4old = svalue4;                                       // Save the old value
 | 
				
			||||||
 | 
					            unit4old = unit4;                                           // Save the old unit
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // ############### Key Layout ################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Key Layout
 | 
				
			||||||
 | 
					        display.setTextColor(textcolor);
 | 
				
			||||||
 | 
					        display.setFont(&Ubuntu_Bold8pt7b);
 | 
				
			||||||
 | 
					        display.setCursor(115, 290);
 | 
				
			||||||
 | 
					        if(keylock == false){
 | 
				
			||||||
 | 
					            display.print(" [  <<<<<<      >>>>>>  ]");
 | 
				
			||||||
 | 
					            if(String(backlightMode) == "Control by Key"){              // Key for illumination
 | 
				
			||||||
 | 
					                display.setCursor(343, 290);
 | 
				
			||||||
 | 
					                display.print("[ILUM]");
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        else{
 | 
				
			||||||
 | 
					            display.print(" [    Keylock active    ]");
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Update display
 | 
				
			||||||
 | 
					        display.updateWindow(0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, true);    // Partial update (fast)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static Page *createPage(CommonData &common){
 | 
				
			||||||
 | 
					    return new PageDST810(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 registerPageDST810(
 | 
				
			||||||
 | 
					    "DST810",           // Page name
 | 
				
			||||||
 | 
					    createPage,         // Action
 | 
				
			||||||
 | 
					    0,                  // Number of bus values depends on selection in Web configuration
 | 
				
			||||||
 | 
					    {"DBT","STW","Log","WTemp"},      // Bus values we need in the page
 | 
				
			||||||
 | 
					    true                // Show display header on/off
 | 
				
			||||||
 | 
					);
 | 
				
			||||||
| 
						 | 
					@ -7,7 +7,7 @@ class PageForValues : public Page
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    public:
 | 
					    public:
 | 
				
			||||||
    PageForValues(CommonData &comon){
 | 
					    PageForValues(CommonData &comon){
 | 
				
			||||||
        comon.logger->logDebug(GwLog::LOG,"created ThreeTwoValue");
 | 
					        comon.logger->logDebug(GwLog::LOG,"Show PageForValues");
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    virtual int handleKey(int key){
 | 
					    virtual int handleKey(int key){
 | 
				
			||||||
| 
						 | 
					@ -85,7 +85,7 @@ class PageForValues : public Page
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        // Logging boat values
 | 
					        // Logging boat values
 | 
				
			||||||
        if (bvalue1 == NULL) return;
 | 
					        if (bvalue1 == NULL) return;
 | 
				
			||||||
        LOG_DEBUG(GwLog::LOG,"Drawing at PageTwoValues, %s: %f, %s: %f, %s: %f, %s: %f", name1, value1, name2, value2, name3, value3, name4, value4);
 | 
					        LOG_DEBUG(GwLog::LOG,"Drawing at PageForValues, %s: %f, %s: %f, %s: %f, %s: %f", name1, value1, name2, value2, name3, value3, name4, value4);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        // Draw page
 | 
					        // Draw page
 | 
				
			||||||
        //***********************************************************
 | 
					        //***********************************************************
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -7,7 +7,7 @@ class PageThreeValues : public Page
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    public:
 | 
					    public:
 | 
				
			||||||
    PageThreeValues(CommonData &comon){
 | 
					    PageThreeValues(CommonData &comon){
 | 
				
			||||||
        comon.logger->logDebug(GwLog::LOG,"created ThreeTwoValue");
 | 
					        comon.logger->logDebug(GwLog::LOG,"Show PageThreeValue");
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    virtual int handleKey(int key){
 | 
					    virtual int handleKey(int key){
 | 
				
			||||||
| 
						 | 
					@ -74,7 +74,7 @@ class PageThreeValues : public Page
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        // Logging boat values
 | 
					        // Logging boat values
 | 
				
			||||||
        if (bvalue1 == NULL) return;
 | 
					        if (bvalue1 == NULL) return;
 | 
				
			||||||
        LOG_DEBUG(GwLog::LOG,"Drawing at PageTwoValues, %s: %f, %s: %f, %s: %f", name1, value1, name2, value2, name3, value3);
 | 
					        LOG_DEBUG(GwLog::LOG,"Drawing at PageThreeValues, %s: %f, %s: %f, %s: %f", name1, value1, name2, value2, name3, value3);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        // Draw page
 | 
					        // Draw page
 | 
				
			||||||
        //***********************************************************
 | 
					        //***********************************************************
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -7,7 +7,7 @@ class PageTwoValues : public Page
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    public:
 | 
					    public:
 | 
				
			||||||
    PageTwoValues(CommonData &comon){
 | 
					    PageTwoValues(CommonData &comon){
 | 
				
			||||||
        comon.logger->logDebug(GwLog::LOG,"created PageTwoValue");
 | 
					        comon.logger->logDebug(GwLog::LOG,"Show PageTwoValue");
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    virtual int handleKey(int key){
 | 
					    virtual int handleKey(int key){
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -492,7 +492,7 @@
 | 
				
			||||||
        "type": "list",
 | 
					        "type": "list",
 | 
				
			||||||
        "default": "Voltage",
 | 
					        "default": "Voltage",
 | 
				
			||||||
        "description": "Type of page for page 1",
 | 
					        "description": "Type of page for page 1",
 | 
				
			||||||
        "list":["oneValue","twoValues","threeValues","forValues","apparentWind","Voltage"],
 | 
					        "list":["oneValue","twoValues","threeValues","forValues","apparentWind","Voltage","DST810"],
 | 
				
			||||||
        "category": "OBP60 Page 1",
 | 
					        "category": "OBP60 Page 1",
 | 
				
			||||||
        "capabilities": {
 | 
					        "capabilities": {
 | 
				
			||||||
            "obp60":"true"
 | 
					            "obp60":"true"
 | 
				
			||||||
| 
						 | 
					@ -552,7 +552,7 @@
 | 
				
			||||||
        "type": "list",
 | 
					        "type": "list",
 | 
				
			||||||
        "default": "apparantWind",
 | 
					        "default": "apparantWind",
 | 
				
			||||||
        "description": "Type of page for page 2",
 | 
					        "description": "Type of page for page 2",
 | 
				
			||||||
        "list":["oneValue","twoValues","threeValues","forValues","apparentWind","Voltage"],
 | 
					        "list":["oneValue","twoValues","threeValues","forValues","apparentWind","Voltage","DST810"],
 | 
				
			||||||
        "category": "OBP60 Page 2",
 | 
					        "category": "OBP60 Page 2",
 | 
				
			||||||
        "capabilities": {
 | 
					        "capabilities": {
 | 
				
			||||||
            "obp60":"true"
 | 
					            "obp60":"true"
 | 
				
			||||||
| 
						 | 
					@ -613,7 +613,7 @@
 | 
				
			||||||
        "type": "list",
 | 
					        "type": "list",
 | 
				
			||||||
        "default": "oneValue",
 | 
					        "default": "oneValue",
 | 
				
			||||||
        "description": "Type of page for page 3",
 | 
					        "description": "Type of page for page 3",
 | 
				
			||||||
        "list":["oneValue","twoValues","threeValues","forValues","apparentWind","Voltage"],
 | 
					        "list":["oneValue","twoValues","threeValues","forValues","apparentWind","Voltage","DST810"],
 | 
				
			||||||
        "category": "OBP60 Page 3",
 | 
					        "category": "OBP60 Page 3",
 | 
				
			||||||
        "capabilities": {
 | 
					        "capabilities": {
 | 
				
			||||||
            "obp60":"true"
 | 
					            "obp60":"true"
 | 
				
			||||||
| 
						 | 
					@ -674,7 +674,7 @@
 | 
				
			||||||
        "type": "list",
 | 
					        "type": "list",
 | 
				
			||||||
        "default": "oneValue",
 | 
					        "default": "oneValue",
 | 
				
			||||||
        "description": "Type of page for page 4",
 | 
					        "description": "Type of page for page 4",
 | 
				
			||||||
        "list":["oneValue","twoValues","threeValues","forValues","apparentWind","Voltage"],
 | 
					        "list":["oneValue","twoValues","threeValues","forValues","apparentWind","Voltage","DST810"],
 | 
				
			||||||
        "category": "OBP60 Page 4",
 | 
					        "category": "OBP60 Page 4",
 | 
				
			||||||
        "capabilities": {
 | 
					        "capabilities": {
 | 
				
			||||||
            "obp60":"true"
 | 
					            "obp60":"true"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -278,6 +278,8 @@ void registerAllPages(PageList &list){
 | 
				
			||||||
    list.add(®isterPageApparentWind);
 | 
					    list.add(®isterPageApparentWind);
 | 
				
			||||||
    extern PageDescription registerPageVoltage;
 | 
					    extern PageDescription registerPageVoltage;
 | 
				
			||||||
    list.add(®isterPageVoltage);
 | 
					    list.add(®isterPageVoltage);
 | 
				
			||||||
 | 
					    extern PageDescription registerPageDST810;
 | 
				
			||||||
 | 
					    list.add(®isterPageDST810);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// OBP60 Task
 | 
					// OBP60 Task
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue