/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 test/led-test/led-test.ino

  • Committer: edam
  • Date: 2011-12-02 19:57:07 UTC
  • Revision ID: edam@waxworlds.org-20111202195707-lko4ap3pfe1jrgd9
renamed code directories and updated the comments in the code

Show diffs side-by-side

added added

removed removed

1
 
void setup()
2
 
{
3
 
        // set up output pins (4 to 13) for the led array
4
 
        for( int a = 4; a < 14; a++ )
5
 
                pinMode( a, OUTPUT );
6
 
}
7
 
 
8
 
void loop()
9
 
{
10
 
        for( int a = 4; a < 14; a++ )
11
 
        {
12
 
                digitalWrite( a, a == 4? LOW : HIGH );
13
 
                delay( 100 );
14
 
        }
15
 
        for( int a = 4; a < 14; a++ ) {
16
 
                digitalWrite( a, a == 4? HIGH : LOW );
17
 
                delay( 100 );
18
 
        }
19
 
}