32
 
         * Get singleton instance.
 
36
 
        static Time &get_instance();
 
 
30
         * Initialise time from store.
 
 
35
         * Save the time to the store.
 
 
49
         * @return month, 1 to 12
 
 
58
        const char *get_month_name();
 
 
63
         * @return date, 1 to 31
 
 
73
        const char *get_day_suffix();
 
 
79
 
        /** milliseconds at last update */
 
80
 
        unsigned long _last_millis;
 
82
 
        /** milliseconds carries over from last update */
 
 
102
         * Increment the hours and save the time.
 
 
107
         * Increment the minutes and save the time.
 
 
112
         * Reset the seconds and save the time.
 
 
114
        void reset_seconds();
 
 
117
         * Increment the year and save the time.
 
 
122
         * Increment the month and save the time.
 
 
127
         * Increment the day and save the time.