#ifdef BOARD_NODEMCU32S_OBP60 #include "Pagedata.h" #include "OBP60ExtensionPort.h" class PageVoltage : public Page { bool keylock = false; // Keylock public: PageVoltage(CommonData &common){ common.logger->logDebug(GwLog::LOG,"Show PageVoltage"); } 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; // Get config data bool simulation = config->getBool(config->useSimuData); String displaycolor = config->getString(config->displaycolor); bool holdvalues = config->getBool(config->holdvalues); String flashLED = config->getString(config->flashLED); String batVoltage = config->getString(config->batteryVoltage); String batType = config->getString(config->batteryType); String backlightMode = config->getString(config->backlight); // Get voltage value String name1 = "VBat"; double value1 = commonData.data.batteryVoltage; // Live supplay voltage bool valid1 = true; // Optical warning by limit violation if(String(flashLED) == "Limit Violation"){ // Limits for Pb battery if(String(batType) == "Pb" && (value1 < 11.8 || value1 > 14.8)){ setBlinkingLED(true); } if(String(batType) == "Pb" && (value1 >= 11.8 && value1 <= 14.8)){ setBlinkingLED(false); setPortPin(OBP_FLASH_LED, false); } // Limits for Gel battery if(String(batType) == "Gel" && (value1 < 11.8 || value1 > 14.4)){ setBlinkingLED(true); } if(String(batType) == "Gel" && (value1 >= 11.8 && value1 <= 14.4)){ setBlinkingLED(false); setPortPin(OBP_FLASH_LED, false); } // Limits for AGM battery if(String(batType) == "AGM" && (value1 < 11.8 || value1 > 14.7)){ setBlinkingLED(true); } if(String(batType) == "AGM" && (value1 >= 11.8 && value1 <= 14.7)){ setBlinkingLED(false); setPortPin(OBP_FLASH_LED, false); } // Limits for LiFePo4 battery if(String(batType) == "LiFePo4" && (value1 < 12.0 || value1 > 14.6)){ setBlinkingLED(true); } if(String(batType) == "LiFePo4" && (value1 >= 12.0 && value1 <= 14.6)){ setBlinkingLED(false); setPortPin(OBP_FLASH_LED, false); } } // Logging voltage value if (value1 == NULL) return; LOG_DEBUG(GwLog::LOG,"Drawing at PageVoltage, Type:%s %s:=%f", batType, name1, value1); // Draw page //*********************************************************** // Clear display, 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 in obp60task.cpp in main loop // Show name display.setTextColor(textcolor); display.setFont(&Ubuntu_Bold32pt7b); display.setCursor(20, 100); display.print(name1); // Page name // Show unit display.setTextColor(textcolor); display.setFont(&Ubuntu_Bold20pt7b); display.setCursor(270, 100); display.print("V"); // Show batery type display.setTextColor(textcolor); display.setFont(&Ubuntu_Bold8pt7b); display.setCursor(295, 100); display.print(batType); // Reading bus data or using simulation data display.setTextColor(textcolor); display.setFont(&DSEG7Classic_BoldItalic60pt7b); display.setCursor(20, 240); if(simulation == true){ if(batVoltage == "12V"){ value1 = 12.0; } if(batVoltage == "24V"){ value1 = 24.0; } value1 += float(random(0, 5)) / 10; // Simulation data display.print(value1,1); } else{ // Check vor valid real data, display also if hold values activated if(valid1 == true || holdvalues == true){ // Resolution switching if(value1 < 10){ display.print(value1,2); } if(value1 >= 10 && value1 < 100){ display.print(value1,1); } if(value1 >= 100){ display.print(value1,0); } } else{ display.print("---"); // Missing bus data } } // Key Layout display.setTextColor(textcolor); display.setFont(&Ubuntu_Bold8pt7b); display.setCursor(130, 290); if(keylock == false){ display.print("[ <<<< " + String(commonData.data.actpage) + "/" + String(commonData.data.maxpage) + " >>>> ]"); 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 PageVoltage(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 (0 here) * and will will provide the names of the fixed values we need */ PageDescription registerPageVoltage( "Voltage", // Name of page createPage, // Action 0, // Number of bus values depends on selection in Web configuration {}, // Names of bus values undepends on selection in Web configuration (refer GwBoatData.h) true // Show display header on/off ); #endif