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

  • Committer: edam
  • Date: 2012-03-03 10:06:31 UTC
  • Revision ID: edam@waxworlds.org-20120303100631-ae3idks1703vdm05
widenned clock hands, tweaked scales, got top & bottom text modes working

Show diffs side-by-side

added added

removed removed

1
1
/*
2
 
 * test_pattern.cc
 
2
 * test_mode.cc
3
3
 *
4
4
 * Copyright (C) 2011 Tim Marston <tim@ed.am> and Dan Marston.
5
5
 *
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/>.
22
22
 */
23
 
#include "test_pattern.h"
24
 
#include "common.h"
25
 
 
26
 
 
27
 
void test_pattern_draw( int segment )
 
23
#include "test_mode.h"
 
24
#include "display.h"
 
25
 
 
26
 
 
27
TestMode::TestMode()
 
28
    :
 
29
        MinorMode( 1 )
 
30
{
 
31
}
 
32
 
 
33
 
 
34
void TestMode::draw( int segment )
28
35
{
29
36
        // turn on outside LEDs
30
 
        led( 9, true );
 
37
        Display::led( 9, true );
31
38
 
32
39
        // display segment number in binary across in the inside LEDs,
33
40
        // with the LED on pin 12 showing the least-significant bit
34
41
        for( int a = 0; a < 9; a++ )
35
 
                led( 8 - a, ( segment >> a ) & 1 );
 
42
                Display::led( 8 - a, ( segment >> a ) & 1 );
36
43
}
37
44