mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2025-12-10 16:59:52 +01:00
18 lines
330 B
C++
18 lines
330 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include <TaskSchedulerDeclarations.h>
|
|
|
|
class MqttHandleInverterTotalClass {
|
|
public:
|
|
MqttHandleInverterTotalClass();
|
|
void init(Scheduler& scheduler);
|
|
|
|
private:
|
|
void loop();
|
|
|
|
Task _loopTask;
|
|
};
|
|
|
|
extern MqttHandleInverterTotalClass MqttHandleInverterTotal;
|