mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 12:36:52 +03:00
* Fix time offset issues in InfluxDB component. (#2278) Closes #2273 Closes #2150 * Update interface_influxdb.cpp * Update interface_influxdb.cpp * Improve Logging * Implement TimeSync at beginning * Update time_sntp.cpp * Update time_sntp.cpp * Set Time After WLAN Init --------- Co-authored-by: Antonin Delpeuch <antonin@delpeuch.eu>
33 lines
618 B
C++
33 lines
618 B
C++
#pragma once
|
|
|
|
#ifndef TIMESNTP_H
|
|
#define TIMESNTP_H
|
|
|
|
|
|
#include <string>
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "freertos/event_groups.h"
|
|
#include "esp_system.h"
|
|
#include "esp_event.h"
|
|
#include "esp_log.h"
|
|
#include "esp_attr.h"
|
|
#include "esp_sleep.h"
|
|
#include "esp_sntp.h"
|
|
|
|
std::string getCurrentTimeString(const char * frm);
|
|
std::string ConvertTimeToString(time_t _time, const char * frm);
|
|
|
|
|
|
bool getTimeIsSet(void);
|
|
bool getTimeWasNotSetAtBoot(void);
|
|
|
|
bool getUseNtp(void);
|
|
bool setupTime();
|
|
|
|
bool time_manual_reset_sync(void);
|
|
|
|
|
|
#endif //TIMESNTP_H
|