/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock
56 by edam
updated software to include drawing abstraction infrastructure
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
};