/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock

« back to all changes in this revision

Viewing changes to src/time.h

  • Committer: Tim Marston
  • Date: 2012-03-12 21:11:20 UTC
  • Revision ID: tim@ed.am-20120312211120-r86cs574yxztgqij
added time set mode, made text renderer's buffer auto reset/output

Show diffs side-by-side

added added

removed removed

93
93
         */
94
94
        void init();
95
95
 
 
96
        /**
 
97
         * Increment the hours and save the time.
 
98
         */
 
99
        void inc_hours();
 
100
 
 
101
        /**
 
102
         * Increment the minutes and save the time.
 
103
         */
 
104
        void inc_minutes();
 
105
 
 
106
        /**
 
107
         * Reset the seconds and save the time.
 
108
         */
 
109
        void reset_seconds();
 
110
 
 
111
        /**
 
112
         * Increment the year and save the time.
 
113
         */
 
114
        void inc_year();
 
115
 
 
116
        /**
 
117
         * Increment the month and save the time.
 
118
         */
 
119
        void inc_month();
 
120
 
 
121
        /**
 
122
         * Increment the day and save the time.
 
123
         */
 
124
        void inc_day();
 
125
 
96
126
};
97
127
 
98
128