mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2025-12-16 07:14:30 +01:00
15 lines
242 B
C++
15 lines
242 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
class NtpSettingsClass {
|
|
public:
|
|
NtpSettingsClass();
|
|
void init();
|
|
|
|
void setServer();
|
|
void setTimezone();
|
|
};
|
|
|
|
extern NtpSettingsClass NtpSettings; |