4
* Copyright (C) 2011 Tim Marston <tim@ed.am> and Dan Marston.
6
* This file is part of propeller-clock (hereafter referred to as "this
7
* program"). See http://ed.am/dev/software/arduino/propeller-clock for more
10
* This program is free software: you can redistribute it and/or modify
11
* it under the terms of the GNU Lesser General Public License as published
12
* by the Free Software Foundation, either version 3 of the License, or
13
* (at your option) any later version.
15
* This program is distributed in the hope that it will be useful,
16
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
* GNU Lesser General Public License for more details.
20
* You should have received a copy of the GNU Lesser General Public License
21
* along with this program. If not, see <http://www.gnu.org/licenses/>.
28
Time &Time::get_instance()
41
int Time::get_minutes()
47
int Time::get_seconds()
55
// how many milliseonds have elapsed since we last checked?
56
unsigned long millis = ::millis();
57
unsigned long delta = millis - _last_millis + _carry;
59
// update the previous time and carried-over milliseconds
60
_last_millis = millis;
61
_carry = delta % 1000;
63
// add the seconds that have passed to the time
64
_seconds += delta / 1000;
65
while( _seconds >= 60 ) {
68
if( _minutes >= 60 ) {
80
_last_millis( millis() ),
83
// get the time from the real-time clock
85
RTC.get( rtc_data, true );
86
_hours = rtc_data[ DS1307_HR ];
87
_minutes = rtc_data[ DS1307_MIN ];
88
_seconds = rtc_data[ DS1307_SEC ];