Skip to content

Commit

Permalink
Merge pull request #16 from RWSDev/master
Browse files Browse the repository at this point in the history
Updated led_remote example to use correct var on line 172
  • Loading branch information
maniacbug committed Jul 13, 2013
2 parents 84e464d + 49f22ea commit 8eaad77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/led_remote/led_remote.pde
Expand Up @@ -169,7 +169,7 @@ void setup(void)
int i = num_led_pins;
while(i--)
{
pinMode(button_pins[i],OUTPUT);
pinMode(led_pins[i],OUTPUT);
led_states[i] = HIGH;
digitalWrite(led_pins[i],led_states[i]);
}
Expand Down

0 comments on commit 8eaad77

Please sign in to comment.