/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.cc

  • Committer: edam
  • Date: 2012-05-18 12:11:01 UTC
  • Revision ID: tim@ed.am-20120518121101-0wik922hyvjkcjdi
switched back to using classes for modes

Show diffs side-by-side

added added

removed removed

25
25
#include "Arduino.h"
26
26
#include "time.h"
27
27
#include "common.h"
28
 
#include "text.h"
29
28
 
30
29
 
31
30
void AnalogueClockMode::draw( int segment )
68
67
void AnalogueClockMode::activate()
69
68
{
70
69
        _flavour = 0;
71
 
 
72
 
        Text::reset();
73
70
}
74
71
 
75
72