AceTime  3.0.0
Date and time classes for Arduino that support timezones from the TZ Database.
Epoch.cpp
1 #include "Epoch.h"
2 
3 namespace ace_time {
4 
5 int16_t Epoch::sCurrentEpochYear = 2050;
6 
7 // Number of days from 2000-01-01 to 2050-01-01: 50*365 + 13 leap days = 18263.
8 int32_t Epoch::sDaysToCurrentEpochFromInternalEpoch = 18263;
9 
10 }