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

  • Committer: Tim Marston
  • Date: 2012-04-29 15:27:19 UTC
  • Revision ID: tim@ed.am-20120429152719-4cu2t9lx7bxpbml1
added adjustable text scaling factor

Show diffs side-by-side

added added

removed removed

1
1
/*
2
 
 * test_pattern_mode.cc
 
2
 * test_pattern.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_mode.h"
 
23
#include "test_pattern.h"
24
24
#include "common.h"
25
 
#include "text.h"
26
 
 
27
 
 
28
 
void TestPatternMode::draw( int segment )
 
25
 
 
26
 
 
27
void test_pattern_draw( int segment )
29
28
{
30
29
        // turn on outside LEDs
31
30
        led( 9, true );
36
35
                led( 8 - a, ( segment >> a ) & 1 );
37
36
}
38
37
 
39
 
 
40
 
void TestPatternMode::activate()
41
 
{
42
 
        Text::reset();
43
 
}