MBlackmagic / NTPtimeESP

Small library for ESP8266 which returns the actual time adjusted by time zone and summer time

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NTPtimeESP

This is a german version with a datime print like: 15:45:55 31.5.2020 Tag: 1 Unixtime: 1590930355

This library returns the queries the NTP time service and returns the actual time in a structure:

struct strDateTime
{

  byte hour;
  byte minute;
  byte second;
  int year;
  byte month;
  byte day;
  byte dayofWeek;
  boolean valid;
  
};

The time can be automatically adjusted by time zone and European summer time. It runs on ESP8266 and ESP32 and needs an internet connection.

About

Small library for ESP8266 which returns the actual time adjusted by time zone and summer time


Languages

Language:C++ 100.0%