/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: 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

1
1
/*
2
 
 * test_pattern.cc
 
2
 * test_pattern_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"
 
23
#include "test_pattern_mode.h"
24
24
#include "common.h"
25
25
 
26
26
 
27
 
void test_pattern_draw( int segment )
 
27
void TestPatternMode::draw( int segment )
28
28
{
29
29
        // turn on outside LEDs
30
30
        led( 9, true );
34
34
        for( int a = 0; a < 9; a++ )
35
35
                led( 8 - a, ( segment >> a ) & 1 );
36
36
}
37