/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "minor_mode.h"


class TestMode
    :
    public MinorMode
{
public:

	TestMode();

	/**
	 * Draw an individual segment (column of pixels)
	 *
	 * @param segment the segment number
	 */
	void draw( int segment );

};