smart-oil-heating-control-s.../main/sntp.h
2024-12-19 20:33:51 +01:00

11 lines
166 B
C

#pragma once
typedef enum _SntpState
{
SYNC_SUCCESSFUL,
SYNC_NOT_STARTED,
SYNC_FAILED,
} eSntpState;
void initSntp(void);
eSntpState getSntpState(void);