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/>.
 
23
 
#include "analogue_clock_mode.h"
 
 
23
#include "analogue_clock.h"
 
24
24
#include "config.h"
 
25
25
#include "Arduino.h"
 
30
 
AnalogueClockMode::AnalogueClockMode()
 
 
30
// the segment that the hour hand should be at
 
 
31
static int _hour_segment;
 
 
33
// the segment that the minute hand should be at
 
 
34
static int _minute_segment;
 
 
36
// the segment that the second hand should be at
 
 
37
static int _second_segment;
 
 
43
void analogue_clock_press()
 
37
 
void AnalogueClockMode::draw( int segment )
 
 
50
void analogue_clock_draw( int segment )
 
39
52
        bool draw_tick = segment && ( segment % ( NUM_SECOND_SEGMENTS * 5 ) == 0 ||
 
40
53
                segment == 1 || segment == NUM_SEGMENTS - 1 );
 
41
54
        bool draw_hour = segment == _hour_segment;
 
42
 
        bool draw_hour_side = 1 >=
 
 
55
        bool draw_hour_side = 2 >=
 
43
56
                ( abs( _hour_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS;
 
45
58
//              ( segment == ( _hour_segment + 1 ) % NUM_SEGMENTS ) ||
 
46
59
//              ( segment == ( _hour_segment + NUM_SEGMENTS - 1 ) % NUM_SEGMENTS );
 
47
60
        bool draw_minute = segment == _minute_segment;
 
 
61
        bool draw_minute_side = 1 >=
 
 
62
                ( abs( _minute_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS;
 
48
64
        bool draw_second = segment == _second_segment;
 
51
 
        Display::led( 9, get_flavour() == 0 );
 
52
 
        Display::led( 8, draw_tick || draw_second );
 
53
 
        for( int a = 6; a <= 7; a++ )
 
54
 
                Display::led( a, draw_minute || draw_second );
 
55
 
        Display::led( 5, draw_minute || draw_second || draw_hour );
 
 
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 ||
 
 
72
                                  draw_second || draw_hour );
 
56
73
        for( int a = 0; a <= 4; a++ )
 
57
 
                Display::led( a, draw_minute || draw_second || draw_hour || draw_hour_side );
 
 
74
                led( a, draw_minute || draw_minute_side ||
 
 
75
                                          draw_second || draw_hour || draw_hour_side );
 
61
 
void AnalogueClockMode::draw_reset()
 
 
79
void analogue_clock_draw_reset()
 
63
81
        Time &time = Time::get_instance();