* converted to "poor-man-ticker" using millis() for uptime, send and mqtt

* added inverter overview
* added send count to statistics
This commit is contained in:
lumapu 2022-05-01 20:48:10 +02:00
parent 89624f7f02
commit 2abd388726
8 changed files with 89 additions and 66 deletions

View file

@ -206,6 +206,7 @@ class HmRadio {
uint8_t pinIrq;
uint8_t AmplifierPower;
uint32_t mSendCnt;
private:
void sendPacket(uint64_t invId, uint8_t buf[], uint8_t len) {
@ -265,7 +266,6 @@ class HmRadio {
RF24 mNrf24;
uint8_t mSendChannel;
BUFFER *mBufCtrl;
uint32_t mSendCnt;
uint8_t mSendBuf[MAX_RF_PAYLOAD_SIZE];
};