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

  • Committer: edam
  • Date: 2012-03-03 10:06:31 UTC
  • Revision ID: edam@waxworlds.org-20120303100631-ae3idks1703vdm05
widenned clock hands, tweaked scales, got top & bottom text modes working

Show diffs side-by-side

added added

removed removed

1
1
/*
2
 
 * analogue_clock.cc
 
2
 * analogue_clock_mode.cc
3
3
 *
4
4
 * Copyright (C) 2011 Tim Marston <tim@ed.am> and Dan Marston.
5
5
 *
20
20
 * You should have received a copy of the GNU Lesser General Public License
21
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
 */
23
 
#include "analogue_clock.h"
 
23
#include "analogue_clock_mode.h"
24
24
#include "config.h"
25
25
#include "Arduino.h"
26
26
#include "time.h"
27
 
#include "common.h"
28
 
 
29
 
 
30
 
// the segment that the hour hand should be at
31
 
static int _hour_segment;
32
 
 
33
 
// the segment that the minute hand should be at
34
 
static int _minute_segment;
35
 
 
36
 
// the segment that the second hand should be at
37
 
static int _second_segment;
38
 
 
39
 
// the flavour
40
 
int _flavour = 0;
41
 
 
42
 
 
43
 
void analogue_clock_press()
 
27
#include "display.h"
 
28
 
 
29
 
 
30
AnalogueClockMode::AnalogueClockMode()
 
31
        :
 
32
    MinorMode( 2 )
44
33
{
45
 
        if( ++_flavour >= 2 )
46
 
                _flavour = 0;
47
34
}
48
35
 
49
36
 
50
 
void analogue_clock_draw( int segment )
 
37
void AnalogueClockMode::draw( int segment )
51
38
{
52
39
        bool draw_tick = segment && ( segment % ( NUM_SECOND_SEGMENTS * 5 ) == 0 ||
53
40
                segment == 1 || segment == NUM_SEGMENTS - 1 );
64
51
        bool draw_second = segment == _second_segment;
65
52
 
66
53
        // set the LEDs
67
 
        led( 9, _flavour == 0 );
68
 
        led( 8, draw_tick || draw_second );
69
 
        led( 7, draw_minute || draw_second );
70
 
        led( 6, draw_minute || draw_minute_side || draw_second );
71
 
        led( 5, draw_minute || draw_minute_side ||
 
54
        Display::led( 9, get_flavour() == 0 );
 
55
        Display::led( 8, draw_tick || draw_second );
 
56
        Display::led( 7, draw_minute || draw_second );
 
57
        Display::led( 6, draw_minute || draw_minute_side || draw_second );
 
58
        Display::led( 5, draw_minute || draw_minute_side ||
72
59
                                  draw_second || draw_hour );
73
60
        for( int a = 0; a <= 4; a++ )
74
 
                led( a, draw_minute || draw_minute_side ||
 
61
                Display::led( a, draw_minute || draw_minute_side ||
75
62
                                          draw_second || draw_hour || draw_hour_side );
76
63
}
77
64
 
78
65
 
79
 
void analogue_clock_draw_reset()
 
66
void AnalogueClockMode::draw_reset()
80
67
{
81
68
        Time &time = Time::get_instance();
82
69