AceTime  1.0
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.
zone_registry.h
1 // This file was generated by the following script:
2 //
3 // $ ../../../tools/tzcompiler.py --input_dir ../../../tools/../../tz --output_dir /home/brian/dev/AceTime/src/ace_time/zonedb --tz_version 2019c --action zonedb --language arduino --scope basic --start_year 2000 --until_year 2050
4 //
5 // using the TZ Database files from
6 // https://github.com/eggert/tz/releases/tag/2019c
7 //
8 // DO NOT EDIT
9 
10 #ifndef ACE_TIME_ZONEDB_ZONE_REGISTRY_H
11 #define ACE_TIME_ZONEDB_ZONE_REGISTRY_H
12 
13 #include <ace_time/internal/ZoneInfo.h>
14 
15 namespace ace_time {
16 namespace zonedb {
17 
18 const uint16_t kZoneRegistrySize = 270;
19 
20 extern const basic::ZoneInfo* const kZoneRegistry[270];
21 
22 }
23 }
24 #endif