mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2025-12-16 23:31:04 +01:00
15 lines
272 B
C
15 lines
272 B
C
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <TimeoutHelper.h>
|
||
|
|
|
||
|
|
class MqttHandleInverterTotalClass {
|
||
|
|
public:
|
||
|
|
void init();
|
||
|
|
void loop();
|
||
|
|
|
||
|
|
private:
|
||
|
|
TimeoutHelper _lastPublish;
|
||
|
|
};
|
||
|
|
|
||
|
|
extern MqttHandleInverterTotalClass MqttHandleInverterTotal;
|