/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/modes/analogue_clock_mode.h

  • Committer: Tim Marston
  • Date: 2012-05-18 14:40:04 UTC
  • Revision ID: tim@ed.am-20120518144004-uuz2zrjmyr78wqd5
updated emacs compile command and readjusted clock shift

Show diffs side-by-side

added added

removed removed

33
33
 
34
34
        /**
35
35
         * Called once per segment to draw a column of LEDs.
36
 
         *
37
36
         * @param segment the segment number to draw
38
37
         */
39
38
        void draw( int segment );
64
63
        /** the segment that the second hand should be at */
65
64
        int _second_segment;
66
65
 
67
 
        /** the segment that the subsecond hand should be at */
68
 
        int _subsecond_segment;
69
 
 
70
66
        /** the flavour */
71
67
        int _flavour;
72
 
 
73
 
        /** number of elapsed milliseconds this second */
74
 
        unsigned long _second_millis;
75
68
};
76
69
 
77
70