Powerlimit is transfered immediately to inverter

This commit is contained in:
lumapu 2023-01-02 12:26:03 +01:00
parent 4a00f90e34
commit 27b3a9cd87
7 changed files with 44 additions and 18 deletions

View file

@ -7,6 +7,7 @@
#define __IAPP_H__
#include "defines.h"
#include "hm/hmSystem.h"
// abstract interface to App. Make members of App accessible from child class
// like web or API without forward declaration
@ -34,6 +35,8 @@ class IApp {
virtual bool getSettingsValid() = 0;
virtual void setMqttDiscoveryFlag() = 0;
virtual void ivSendHighPrio(Inverter<> *iv) = 0;
virtual bool getMqttIsConnected() = 0;
virtual uint32_t getMqttRxCnt() = 0;
virtual uint32_t getMqttTxCnt() = 0;