Initial commit

This commit is contained in:
2023-02-10 09:32:39 +01:00
commit 84bbb1297b
13 changed files with 1008 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
/**
* @file menuControl.cpp
* @author Alexander Klein (alex@kleiax.de)
* @brief
* @version 0.1
* @date 2022-12-28
*
* @copyright Copyright (c) 2022
*
*/
#include "menuControl.h"
void MenuControl::print(String lineOne, String lineTwo) const {
if (this->lcd) {
lcd->clear();
lcd->setCursor(0, 0);
lcd->print(lineOne.c_str());
lcd->setCursor(0, 1);
lcd->print(lineTwo.c_str());
}
}