/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 18:29:50 UTC
  • Revision ID: tim@ed.am-20120518182950-t85bn9a21n72uzm8
text messages are now individually enabled and draw()n automatically

Show diffs side-by-side

added added

removed removed

64
64
        /** the segment that the second hand should be at */
65
65
        int _second_segment;
66
66
 
67
 
        /** the segment that the subsecond hand should be at */
68
 
        int _subsecond_segment;
69
 
 
70
67
        /** the flavour */
71
68
        int _flavour;
72
 
 
73
 
        /** number of elapsed milliseconds this second */
74
 
        unsigned long _second_millis;
75
69
};
76
70
 
77
71