removed old update functions

This commit is contained in:
2023-04-26 07:57:00 +02:00
parent db3c25da42
commit 0ab6c829d5
3 changed files with 1 additions and 14 deletions
-8
View File
@@ -64,14 +64,6 @@ void MenuInformationSites::printMenu() {
this->lastPageNumber = this->currentPage;
}
void MenuInformationSites::update() {
if (millis() - this->lastMillis < this->delay) {
return;
}
this->printMenu();
this->lastMillis = millis();
}
bool MenuInformationSites::setCountPages(uint8_t pages) {
this->countPages = pages;
this->currentPage = 0;