|
Arduino-RTC
Real-Time Clock (RTC) library for Arduino
|
#include <time.h>

Public Member Functions | |
| tm () | |
| tm (int8_t wday, int16_t year, int8_t mon, int8_t mday, int8_t hour, int8_t min, int8_t sec) | |
Public Attributes | |
| int8_t | tm_sec |
| Seconds [0-60]. More... | |
| int8_t | tm_min |
| Minutes [0-59]. More... | |
| int8_t | tm_hour |
| Hours [0-23]. More... | |
| int8_t | tm_mday |
| Day in Month [1-31]. More... | |
| int8_t | tm_wday |
| Days since Sunday [0-6]. More... | |
| int8_t | tm_mon |
| 0-11 Months since January [0-11]. More... | |
| int16_t | tm_year |
| Years since 1900. More... | |
| int16_t | tm_yday |
| days since January 1 [0-365]. More... | |
| int16_t | tm_isdst |
| Daylight Saving Time flag [-1/0/1]. More... | |
The tm structure contains a representation of time 'broken down' into components of the Gregorian calendar.
|
inline |