Complete rewrite of Application

This commit is contained in:
2026-05-04 22:30:50 +02:00
parent 507a874304
commit 195d753d81
9 changed files with 360 additions and 180 deletions

27
DisplayManager.h Normal file
View File

@@ -0,0 +1,27 @@
#ifndef DISPLAY_MANAGER_H
#define DISPLAY_MANAGER_H
#include <LiquidCrystal_I2C.h>
#include <Arduino.h>
class DisplayManager {
private:
LiquidCrystal_I2C lcd;
unsigned long lastUpdate;
const unsigned long interval = 1000;
String lastLine1;
String lastLine2;
public:
DisplayManager();
void begin();
bool ready(unsigned long now);
void showText(String line1, String line2);
};
#endif