A lot of memory consumption improvements

This commit is contained in:
Djuri 2023-10-28 20:31:10 +02:00
parent 0bf60d160f
commit e1648a9a42
24 changed files with 135 additions and 105 deletions

View file

@ -9,10 +9,10 @@
class BlockHeightScreen {
protected:
static uint blockNr;
static std::array<String, 7> epdContent;
static std::array<String, NUM_SCREENS> epdContent;
public:
static void init();
static void showScreen();
static void onNewBlock(uint blockNr);
static std::array<String, 7> getEpdContent();
static std::array<String, NUM_SCREENS> getEpdContent();
};