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

  • 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 "Arduino.h"
 
2
#include "drawer.h"
 
3
 
 
4
 
 
5
void Drawer::draw_reset()
 
6
{
 
7
}
 
8
 
 
9
 
 
10
void Drawer::led_on( int led, bool on )
 
11
{
 
12
        if( led < 0 || led > 9 ) return;
 
13
 
 
14
        // convert to pin no.
 
15
        led += 4;
 
16
 
 
17
        // pin 4 needs to be inverted (it's driving a PNP)
 
18
        if( led == 4 ) on = !on;
 
19
 
 
20
        digitalWrite( led, on? HIGH : LOW );
 
21
}