mirror of
https://github.com/zzzzDev4/IAS-Better-Tea.git
synced 2025-04-21 07:31:20 +02:00
14 lines
No EOL
447 B
C++
14 lines
No EOL
447 B
C++
#pragma once
|
|
#include <Adafruit_GFX.h>
|
|
#include <Adafruit_SSD1306.h>
|
|
|
|
class SmartDisplay {
|
|
public:
|
|
SmartDisplay(Adafruit_SSD1306 *display);
|
|
void printTeaConfigScreen(String teaName, int steepingSeconds, int editDir);
|
|
void printAddNewTeaScreen();
|
|
void printTeaSteepingProgressScreen(String teaName, int steepingSeconds);
|
|
void printWaitForRFIDScreen();
|
|
private:
|
|
Adafruit_SSD1306 *m_display;
|
|
}; |