/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-02-25 14:54:33 UTC
  • Revision ID: edam@waxworlds.org-20120225145433-kih8qs45x05cum46
removed Bounce library and updated/fixed new code

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
 
 
25
 
 
26
TestMode::TestMode()
 
27
    :
 
28
        MinorMode( 1 )
 
29
{
 
30
}
 
31
 
 
32
 
 
33
void TestMode::draw( int segment )
28
34
{
29
35
        // turn on outside LEDs
30
 
        led( 9, true );
 
36
        led_on( 9, true );
31
37
 
32
38
        // display segment number in binary across in the inside LEDs,
33
39
        // with the LED on pin 12 showing the least-significant bit
34
40
        for( int a = 0; a < 9; a++ )
35
 
                led( 8 - a, ( segment >> a ) & 1 );
 
41
                led_on( 8 - a, ( segment >> a ) & 1 );
36
42
}
37
43