system_time.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* LwIP SNTP example
  2. This example code is in the Public Domain (or CC0 licensed, at your option.)
  3. Unless required by applicable law or agreed to in writing, this
  4. software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  5. CONDITIONS OF ANY KIND, either express or implied.
  6. */
  7. #include "Config.h"
  8. #include "esp_attr.h"
  9. #include "esp_event.h"
  10. #include "esp_log.h"
  11. #include "esp_sleep.h"
  12. #include "esp_sntp.h"
  13. #include "esp_system.h"
  14. #include "tools.h"
  15. #include <string.h>
  16. #include <sys/time.h>
  17. #include <time.h>
  18. static const char* TAG = "system_time";
  19. void system_time_init(void) {
  20. char strftime_buf[64];
  21. time_t now;
  22. struct tm timeinfo;
  23. const char* timezone =
  24. platform->has_services && platform->services.timezone && strlen(platform->services.timezone) > 0 ? platform->services.timezone : "EST5EDT,M3.2.0/2,M11.1.0";
  25. setenv("TZ", timezone, 1);
  26. tzset();
  27. time(&now);
  28. localtime_r(&now, &timeinfo);
  29. // Is time set? If not, tm_year will be (1970 - 1900).
  30. if (timeinfo.tm_year < (2016 - 1900)) {
  31. ESP_LOGI(TAG, "Time is not set yet. Connecting to WiFi and getting time over NTP.");
  32. sntp_servermode_dhcp(2);
  33. esp_sntp_setoperatingmode(ESP_SNTP_OPMODE_POLL);
  34. esp_sntp_setservername(0, "pool.ntp.org");
  35. esp_sntp_init();
  36. } else {
  37. strftime(strftime_buf, sizeof(strftime_buf), "%c", &timeinfo);
  38. ESP_LOGI(TAG, "Current date/time is: %s for time zone %s", strftime_buf, timezone);
  39. }
  40. }