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

  • Committer: Tim Marston
  • Date: 2012-03-09 23:42:20 UTC
  • Revision ID: tim@ed.am-20120309234220-xr1vxzve0o5n2oss
added support for eclipse project and converted to a manual Makefile

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
        DigitalClockMode();
35
35
 
36
36
        /**
 
37
         * Called to inform the mode that there has been a (short) button press.
 
38
         */
 
39
        void press();
 
40
 
 
41
        /**
37
42
         * Draw an individual segment (column of pixels)
38
43
         *
39
44
         * @param segment the segment number
41
46
        void draw( int segment );
42
47
 
43
48
        /**
44
 
         * Called to inform the mode that there has been a (short) button press.
 
49
         * Called before the first segment is drawn, once per "frame".
45
50
         */
46
 
        void press();
 
51
        void draw_reset();
47
52
 
48
53
        /**
49
54
         * Called when this minor mode becomes active
54
59
        
55
60
        /**
56
61
         * Set the text message
 
62
         *
 
63
         * @param update or reset message?
57
64
         */
58
 
        void set_message();
 
65
        void set_message( bool update );
59
66
 
60
67
};
61
68