mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2026-01-07 05:14:49 +01:00
15 lines
241 B
C++
15 lines
241 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
class InverterSettingsClass {
|
|
public:
|
|
void init();
|
|
void loop();
|
|
|
|
private:
|
|
uint32_t _lastUpdate = 0;
|
|
};
|
|
|
|
extern InverterSettingsClass InverterSettings; |