mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2026-01-03 11:28:22 +01:00
15 lines
229 B
C++
15 lines
229 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
class MqttHandleDtuClass {
|
|
public:
|
|
void init();
|
|
void loop();
|
|
|
|
private:
|
|
uint32_t _lastPublish;
|
|
};
|
|
|
|
extern MqttHandleDtuClass MqttHandleDtu; |