1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-11-29 10:24:12 +01:00

Fixing variable name.

This commit is contained in:
David A. Mellis 2009-10-18 19:41:30 +00:00
parent 650dc075a4
commit 3afe2e0713

View File

@ -29,7 +29,7 @@ const int threshold = 400; // an arbitrary threshold level that's in the range
void setup() {
// initialize the LED pin as an output:
pinMode(LED, OUTPUT);
pinMode(ledPin, OUTPUT);
// initialize serial communications:
Serial.begin(9600);
}