/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.cc

  • Committer: Tim Marston
  • Date: 2012-03-10 12:56:55 UTC
  • Revision ID: tim@ed.am-20120310125655-z72qh4bqou2byi2r
added frame reset code and inited minor mode flavours on mode activation

Show diffs side-by-side

added added

removed removed

 
1
/*
 
2
 * time.cc
 
3
 *
 
4
 * Copyright (C) 2011 Tim Marston <tim@ed.am> and Dan Marston.
 
5
 *
 
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
 
8
 * information.
 
9
 *
 
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.
 
14
 *
 
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.
 
19
 *
 
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/>.
 
22
 */
1
23
#include "time.h"
2
24
#include <DS1307.h>
3
25
#include <Wire.h>
4
26
 
5
27
 
6
 
Time &Time::get_instance()
7
 
{
8
 
        static Time time;
9
 
        return time;
 
28
// year
 
29
static int _year;
 
30
 
 
31
// month
 
32
static int _month;
 
33
 
 
34
// day
 
35
static int _day;
 
36
 
 
37
// hours
 
38
static int _hours;
 
39
 
 
40
// minutes
 
41
static int _minutes;
 
42
 
 
43
// seconds
 
44
static int _seconds;
 
45
 
 
46
// milliseconds at last update
 
47
static unsigned long _last_millis = millis();
 
48
 
 
49
// milliseconds carries over from last update
 
50
static unsigned long _carry = 0;
 
51
 
 
52
 
 
53
static void probe_rtc()
 
54
{
 
55
        // get the time from the real-time clock
 
56
        int rtc_data[ 7 ];
 
57
        RTC.get( rtc_data, true );
 
58
        _year = rtc_data[ DS1307_YR ];
 
59
        _month = rtc_data[ DS1307_MTH ];
 
60
        _day = rtc_data[ DS1307_DAY ];
 
61
        _hours = rtc_data[ DS1307_HR ];
 
62
        _minutes = rtc_data[ DS1307_MIN ];
 
63
        _seconds = rtc_data[ DS1307_SEC ];
 
64
}
 
65
 
 
66
 
 
67
int Time::get_year()
 
68
{
 
69
        return _year;
 
70
}
 
71
 
 
72
 
 
73
int Time::get_month()
 
74
{
 
75
        return _month;
 
76
}
 
77
 
 
78
 
 
79
const char *Time::get_month_name()
 
80
{
 
81
        static const char *months[] = {
 
82
                "January",
 
83
                "February",
 
84
                "March",
 
85
                "April",
 
86
                "May",
 
87
                "June",
 
88
                "July",
 
89
                "August",
 
90
                "September",
 
91
                "October",
 
92
                "November",
 
93
                "December",
 
94
        };
 
95
 
 
96
        return months[ _month - 1 ];
 
97
}
 
98
 
 
99
 
 
100
int Time::get_day()
 
101
{
 
102
        return _day;
 
103
}
 
104
 
 
105
 
 
106
const char *Time::get_day_suffix()
 
107
{
 
108
        switch( _day )
 
109
        {
 
110
        case 1:
 
111
        case 21:
 
112
        case 31:
 
113
                return "st";
 
114
        case 2:
 
115
        case 22:
 
116
                return "nd";
 
117
        case 3:
 
118
        case 23:
 
119
                return "rd";
 
120
        default:
 
121
                return "th";
 
122
        }
10
123
}
11
124
 
12
125
 
30
143
 
31
144
void Time::update()
32
145
{
33
 
        // how many milliseonds have elapsed since we last checked?
 
146
        // how many milliseconds have elapsed since we last checked?
34
147
        unsigned long millis = ::millis();
35
148
        unsigned long delta = millis - _last_millis + _carry;
36
149
 
46
159
                if( _minutes >= 60 ) {
47
160
                        _minutes -= 60;
48
161
                        _hours++;
49
 
                        if( _hours >= 24 )
 
162
                        if( _hours >= 24 ) {
50
163
                                _hours -= 24;
 
164
 
 
165
                                // I mean we *could* work out the day... but FUCK IT! We bought
 
166
                                // some god damn HARDWARE to do that shit!
 
167
                                probe_rtc();
 
168
                        }
51
169
                }
52
170
        }
53
171
}
54
172
 
55
173
 
56
 
Time::Time()
57
 
        :
58
 
        _last_millis( millis() ),
59
 
        _carry( 0 )
 
174
void Time::init()
60
175
{
61
 
        // get the time from the real-time clock
62
 
        int rtc_data[ 7 ];
63
 
        RTC.get( rtc_data, true );
64
 
        _hours = rtc_data[ DS1307_HR ];
65
 
        _minutes = rtc_data[ DS1307_MIN ];
66
 
        _seconds = rtc_data[ DS1307_SEC ];
 
176
        probe_rtc();
67
177
}
68
178
 
 
179