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
#endif //_ANALOGUE_CLOCK_H_
23
#ifndef _ANALOGUE_CLOCK_MODE_H_
24
#define _ANALOGUE_CLOCK_MODE_H_
27
#include "minor_mode.h"
30
class AnalogueClockMode : public MinorMode
37
* Draw an individual segment (column of pixels)
39
* @param segment the segment number
41
void draw( int segment );
44
* Called before the first segment is drawn, once per "frame".
50
/** the segment that the hour hand should be at */
53
/** the segment that the minute hand should be at */
56
/** the segment that the second hand should be at */
62
#endif //_ANALOGUE_CLOCK_MODE_H_