Commit 8eaad77b authored by maniacbug's avatar maniacbug

Merge pull request #16 from RWSDev/master

Updated led_remote example to use correct var on line 172
parents 84e464de 49f22eae
......@@ -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]);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment