AceTime
0.7
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
66
int8_t
const
deltaCode;
67
84
uint8_t
const
letter;
85
};
86
97
struct
ZonePolicy {
98
const
ZoneRule*
const
rules;
99
const
char
*
const
*
const
letters;
100
uint8_t
const
numRules;
101
uint8_t
const
numLetters;
102
};
Generated by
1.8.13