mirror of
https://github.com/airgradienthq/arduino.git
synced 2025-07-14 16:36:31 +02:00
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
#ifndef _AG_OLED_DISPLAY_H_
|
|
#define _AG_OLED_DISPLAY_H_
|
|
|
|
#include "AgConfigure.h"
|
|
#include "AgValue.h"
|
|
#include "AirGradient.h"
|
|
#include "Main/PrintLog.h"
|
|
#include <Arduino.h>
|
|
|
|
class OledDisplay : public PrintLog {
|
|
private:
|
|
Configuration &config;
|
|
AirGradient *ag;
|
|
bool isBegin = false;
|
|
void *u8g2 = NULL;
|
|
Measurements &value;
|
|
bool isDisplayOff = false;
|
|
|
|
void showTempHum(bool hasStatus);
|
|
void setCentralText(int y, String text);
|
|
void setCentralText(int y, const char *text);
|
|
|
|
public:
|
|
OledDisplay(Configuration &config, Measurements &value,
|
|
Stream &log);
|
|
~OledDisplay();
|
|
|
|
void setAirGradient(AirGradient *ag);
|
|
bool begin(void);
|
|
void end(void);
|
|
void setText(String &line1, String &line2, String &line3);
|
|
void setText(const char *line1, const char *line2, const char *line3);
|
|
void setText(String &line1, String &line2, String &line3, String &line4);
|
|
void setText(const char *line1, const char *line2, const char *line3,
|
|
const char *line4);
|
|
void showDashboard(void);
|
|
void showDashboard(const char *status);
|
|
void setBrightness(int percent);
|
|
void showNewFirmwareVersion(String version);
|
|
void showNewFirmwareUpdating(String percent);
|
|
void showNewFirmwareSuccess(String count);
|
|
void showNewFirmwareFailed(void);
|
|
void showRebooting(void);
|
|
};
|
|
|
|
#endif /** _AG_OLED_DISPLAY_H_ */
|