AceTime
1.2
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
93
uint8_t
const
letter;
94
};
95
106
struct
ZonePolicy {
107
const
ZoneRule*
const
rules;
108
const
char
*
const
*
const
letters;
109
uint8_t
const
numRules;
110
uint8_t
const
numLetters;
111
};
Generated by
1.8.17