* Added history charts to web and to Display_Mono_128x64

This commit is contained in:
VArt67 2024-01-07 23:25:50 +01:00
parent 6fb0535939
commit 2b4de00a89
17 changed files with 694 additions and 100 deletions

View file

@ -14,6 +14,8 @@
#include "ESPAsyncWebServer.h"
#endif
class TotalPowerHistory;
class YieldDayHistory;
//#include "hms/hmsRadio.h"
#if defined(ESP32)
//typedef CmtRadio<esp32_3wSpi<>> CmtRadioType;
@ -63,6 +65,8 @@ class IApp {
virtual bool getProtection(AsyncWebServerRequest *request) = 0;
virtual TotalPowerHistory *getTotalPowerHistoryPtr() = 0;
virtual YieldDayHistory *getYieldDayHistoryPtr() = 0;
virtual void* getRadioObj(bool nrf) = 0;
};