/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.h

  • Committer: edam
  • Date: 2012-02-25 01:31:17 UTC
  • Revision ID: tim@ed.am-20120225013117-53ed8yahoreoms76
updated software to include drawing abstraction infrastructure

Show diffs side-by-side

added added

removed removed

 
1
#include "minor_mode.h"
 
2
 
 
3
 
 
4
class TestMode
 
5
    :
 
6
    public MinorMode
 
7
{
 
8
public:
 
9
 
 
10
        TestMode();
 
11
 
 
12
        /**
 
13
         * Draw an individual segment (column of pixels)
 
14
         *
 
15
         * @param segment the segment number
 
16
         */
 
17
        void draw( int segment );
 
18
 
 
19
};