/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:29:52 UTC
  • Revision ID: tim@ed.am-20120225012952-32q8gg07aovk3qxh
updated arduino.mk

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
 
}