build new class for information with pages

This commit is contained in:
2022-12-27 15:21:52 +01:00
parent 009d42f947
commit 1b0c5aa383
5 changed files with 168 additions and 110 deletions
+8 -52
View File
@@ -11,56 +11,10 @@
#include "menuGPS.h"
MenuGPS::MenuGPS(DriveManager* driveManager) {
MenuGPS::MenuGPS(DriveManager* driveManager) :
MenuInformationSites(10) {
this->navigation = driveManager->getNavigation();
this->ntripClient = this->navigation->getNTRIPClient();
this->lastMillis = millis();
}
void MenuGPS::up() {
if (this->currentPage == 0)
this->currentPage = this->countPages - 1;
else
this->currentPage--;
this->printMenu();
}
void MenuGPS::down() {
if (this->currentPage == this->countPages - 1)
this->currentPage = 0;
else
this->currentPage++;
this->printMenu();
}
void MenuGPS::right() {
this->yes();
}
void MenuGPS::left() {
if (this->parentMenu)
this->parentMenu->printMenu();
}
void MenuGPS::no() {
this->left();
}
void MenuGPS::yes() {
this->runCommand();
this->printMenu();
}
void MenuGPS::printMenu() {
this->printPage();
}
void MenuGPS::update() {
if (millis() - this->lastMillis < this->delay) {
return;
}
this->printMenu();
this->lastMillis = millis();
}
void MenuGPS::printPage() const {
@@ -69,7 +23,7 @@ void MenuGPS::printPage() const {
if (gpsData)
fixType = gpsData->fixType;
switch (this->currentPage) {
switch (this->getCurrentPage()) {
case 0: {
uint8_t siv = 0;
uint32_t pDOP = 0;
@@ -192,15 +146,17 @@ void MenuGPS::printPage() const {
if (this->lcd) {
lcd->clear();
lcd->setCursor(0, 0);
lcd->printf("Page: %u", this->currentPage);
lcd->printf("Page: %u", this->getCurrentPage() + 1);
lcd->setCursor(0, 1);
lcd->printf("of %u", this->getCountPages());
}
std::cout << "Page: " << (int) this->currentPage << std::endl;
std::cout << "Page: " << (int) this->getCurrentPage() + 1 << " of " << (int) this->getCountPages() << std::endl;
break;
}
}
void MenuGPS::runCommand() const {
switch (this->currentPage) {
switch (this->getCurrentPage()) {
case 3: {
// std::cout << "MenuGPS::runCommand " << this->ntripClient->getClientState() << std::endl;
if (this->ntripClient->getClientState() == NTRIPClientStates::pushData)
+4 -54
View File
@@ -14,7 +14,7 @@
#include <SparkFun_u-blox_GNSS_Arduino_Library.h>
#include "menuControl.h"
#include "menuInformationSites.h"
#include "driveModi/driveManager.h"
#include "navigation.h"
#include "ntripClient.h"
@@ -23,7 +23,7 @@
* @brief A class to print informations about the GPS object
*
*/
class MenuGPS : public MenuControl {
class MenuGPS : public MenuInformationSites {
public:
/**
* @brief Construct a new Menu GPS object
@@ -32,62 +32,12 @@ class MenuGPS : public MenuControl {
*/
MenuGPS(DriveManager* driveManager);
/**
* @brief Next page
*/
void down() override;
/**
* @brief Previous page
*/
void up() override;
/**
* @brief Update information
*/
void right() override;
/**
* @brief Go to the parent menu
*/
void left() override;
/**
* @brief Go to the parent menu
*/
void no() override;
/**
* @brief Update information
*/
void yes() override;
/**
* @brief Prints the Information to display and console
*
* Prints the selected page.
* The informations are only printed to the display if it
* set.
*/
void printMenu() override;
/**
* @brief can be called to update shown data
*/
void update() override;
private:
const uint8_t countPages = 7;
uint8_t currentPage = 0;
void printPage() const;
void runCommand() const;
void printPage() const override;
void runCommand() const override;
NTRIPClient* ntripClient;
Navigation* navigation;
const uint16_t delay = 5000;
uint32_t lastMillis = 0;
};
#endif // MENU_GPS_H