AceTime
0.1
Date and time classes for Arduino that supports the TZ DAtabase, and a system clock synchronized from an NTP server or an RTC chip.
|
▼Nace_time | |
▼Nbasic | |
CTransition | Data structure that defines the start of a specific UTC offset as described by the matching ZoneEra and its ZoneRule for a given year |
CZoneEra | An entry in ZoneInfo which describes which ZonePolicy was being followed during a particular time period |
CZoneInfo | Representation of a given time zone, implemented as an array of ZoneEra records |
CZonePolicy | A collection of transition rules which describe the DST rules of a given administrative region |
CZoneRule | A time zone transition rule |
▼Ncommon | |
CDateStrings | Class that translates a numeric month (1-12) or weekDay (1-7) into a human readable string |
CTimingStats | Helper class to collect timing statistics such as min, max, average |
CZoneContext | Metadata about the zone database |
▼Nextended | |
CDateTuple | A tuple that represents a date and time, using a timeCode that tracks the time component using 15-minute intervals |
CTransition | Represents an interval of time where the time zone obeyed a certain UTC offset and DST delta |
CTransitionStorage | A heap manager which is specialized and tuned to manage a collection of Transitions, keeping track of unused, used, and active states, using a fixed array of Transitions |
CYearMonthTuple | A simple tuple to represent a year/month pair |
CZoneEra | An entry in ZoneInfo which describes which ZonePolicy was being followed during a particular time period |
CZoneInfo | Representation of a given time zone, implemented as an array of ZoneEra records |
CZoneMatch | Data structure that captures the matching ZoneEra and its ZoneRule transitions for a given year |
CZonePolicy | A collection of transition rules which describe the DST rules of a given administrative region |
CZoneRule | A time zone transition rule |
▼Nprovider | |
CSystemTimeHeartbeatCoroutine | A coroutine that calls SystemTimeKeeper.getNow() peridically |
CSystemTimeHeartbeatLoop | A class that peridically freshens the SystemTimeKeeper using the heartbeat call to getNow() |
CSystemTimeKeeper | A TimeKeeper that uses the Arduino millis() function to advance the time returned to the user |
CSystemTimeSyncCoroutine | A coroutine that syncs the SystemTimeKeeper with its syncTimeProvider |
CSystemTimeSyncLoop | A class that periodically that syncs the SystemTimeKeeper with its syncTimeProvider |
CTimeKeeper | A TimeProvider whose time can be set by the end-user |
CTimeProvider | Base class for objects that provide a source of time whose time cannot be changed by the end-user |
CBasicZoneSpecifier | An implementation of ZoneSpecifier that supports a subset of the zones containing in the TZ Database |
CExtendedZoneSpecifier | An implementation of ZoneSpecifier that works for all zones defined by the TZ Database (with some zones suffering a slight loss of accurancy described below) |
CLocalDate | The date (year, month, day) representing the date without regards to time zone |
CLocalDateTime | |
CLocalTime | The time (hour, minute, second) fields representing the time without regards to the day or the time zone |
CManualZoneSpecifier | An implementation of ZoneSpecifier which allows the user to manually adjust the UTC offset and the DST flag |
COffsetDateTime | The date (year, month, day) and time (hour, minute, second) fields representing the time with an offset from UTC |
CTimeOffset | A thin wrapper that represents a time offset from a reference point, usually 00:00 at UTC, but not always |
CTimePeriod | Represents a period of time relative to some known point in time, potentially represented by a DateTime |
CTimeZone | Class that describes a time zone |
CZonedDateTime | The date (year, month, day) and time (hour, minute, second) fields representing an instant in time |
CZoneSpecifier | Base interface for ZoneSpecifier classes |