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
#ifndef _ANALOGUE_CLOCK_H_
24
#define _ANALOGUE_CLOCK_H_
28
* Called to inform the mode that there has been a (short) button press.
30
extern void analogue_clock_press();
33
* Draw an individual segment (column of pixels)
35
* @param segment the segment number
37
extern void analogue_clock_draw( int segment );
40
* Called before the first segment is drawn, once per "frame".
42
extern void analogue_clock_draw_reset();
45
* Called when this minor mode becomes active
47
extern void analogue_clock_activate();
50
#endif //_ANALOGUE_CLOCK_H_
23
#ifndef _ANALOGUE_CLOCK_MODE_H_
24
#define _ANALOGUE_CLOCK_MODE_H_
30
class AnalogueClockMode : public Mode
35
* Called once per segment to draw a column of LEDs.
36
* @param segment the segment number to draw
38
void draw( int segment );
41
* Called at the start of a "frame", before any segments are drawn.
46
* Called when the mode is becoming active.
51
* Called when the button has been pressed.
57
/** the segment that the hour hand should be at */
60
/** the segment that the minute hand should be at */
63
/** the segment that the second hand should be at */
71
#endif //_ANALOGUE_CLOCK_MODE_H_