/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: 2012-03-23 15:56:07 UTC
  • Revision ID: tim@ed.am-20120323155607-6h8pc0c6o35nl179
switch button to no interim presses during settings mode; added NVRAM support

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
}