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

54
54
        bool draw_hour = segment == _hour_segment;
55
55
        bool draw_hour_side = 2 >=
56
56
                ( abs( _hour_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS;
57
 
                
58
 
//              ( segment == ( _hour_segment + 1 ) % NUM_SEGMENTS ) ||
59
 
//              ( segment == ( _hour_segment + NUM_SEGMENTS - 1 ) % NUM_SEGMENTS );
60
57
        bool draw_minute = segment == _minute_segment;
61
58
        bool draw_minute_side = 1 >=
62
59
                ( abs( _minute_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS;
85
82
                ( NUM_SECOND_SEGMENTS * Time::get_seconds() / 60 );
86
83
        _second_segment = Time::get_seconds() * NUM_SECOND_SEGMENTS;
87
84
}
 
85
 
 
86
 
 
87
void analogue_clock_activate()
 
88
{
 
89
        _flavour = 0;
 
90
}