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

  • 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

22
22
 */
23
23
#include "test_pattern_mode.h"
24
24
#include "common.h"
 
25
#include "text.h"
25
26
 
26
27
 
27
28
void TestPatternMode::draw( int segment )
34
35
        for( int a = 0; a < 9; a++ )
35
36
                led( 8 - a, ( segment >> a ) & 1 );
36
37
}
 
38
 
 
39
 
 
40
void TestPatternMode::activate()
 
41
{
 
42
        Text::reset();
 
43
}