mirror of
https://github.com/airgradienthq/arduino.git
synced 2025-07-15 08:56:34 +02:00
clarifying method/variable/class names
This commit is contained in:
@ -7,19 +7,19 @@
|
||||
#include "Main/PrintLog.h"
|
||||
#include <Arduino.h>
|
||||
|
||||
class AgOledDisplay : public PrintLog {
|
||||
class OledDisplay : public PrintLog {
|
||||
private:
|
||||
AgConfigure &config;
|
||||
Configuration &config;
|
||||
AirGradient *ag;
|
||||
bool isBegin = false;
|
||||
void *u8g2 = NULL;
|
||||
AgValue &value;
|
||||
Measurements &value;
|
||||
|
||||
void showTempHum(bool hasStatus);
|
||||
public:
|
||||
AgOledDisplay(AgConfigure &config, AgValue &value,
|
||||
OledDisplay(Configuration &config, Measurements &value,
|
||||
Stream &log);
|
||||
~AgOledDisplay();
|
||||
~OledDisplay();
|
||||
|
||||
void setAirGradient(AirGradient *ag);
|
||||
bool begin(void);
|
||||
|
Reference in New Issue
Block a user