AceTime
1.7.1
Date and time classes for Arduino that support timezones from the TZ Database, and a system clock that can synchronize from an NTP server or an RTC chip.
src
ace_time
internal
ZonePolicy.inc
1
/*
2
* MIT License
3
* Copyright (c) 2018 Brian T. Park
4
*/
5
11
struct
ZoneRule {
16
static
const
int8_t kMaxYearTiny = 126;
17
19
int8_t
const
fromYearTiny;
20
22
int8_t
const
toYearTiny;
23
25
uint8_t
const
inMonth;
26
37
uint8_t
const
onDayOfWeek;
38
43
int8_t
const
onDayOfMonth;
44
49
uint8_t
const
atTimeCode;
50
60
uint8_t
const
atTimeModifier;
61
75
int8_t
const
deltaCode;
76
98
uint8_t
const
letter;
99
};
100
111
struct
ZonePolicy {
112
const
ZoneRule*
const
rules;
113
const
char
*
const
*
const
letters;
114
uint8_t
const
numRules;
115
uint8_t
const
numLetters;
116
};
Generated by
1.8.17