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

  • Committer: Tim Marston
  • Date: 2012-03-09 23:42:20 UTC
  • Revision ID: tim@ed.am-20120309234220-xr1vxzve0o5n2oss
added support for eclipse project and converted to a manual Makefile

Show diffs side-by-side

added added

removed removed

40
40
         */
41
41
        virtual void draw_reset();
42
42
 
43
 
protected:
44
 
 
45
 
        /**
46
 
         * Turn on/off an LED
47
 
         *
48
 
         * @param led index of the LED (0 to 9)
49
 
         * @param on true to turn on, false to turn off
50
 
         */
51
 
        void led_on( int led, bool on );
52
 
 
53
43
};
54
44
 
55
45