Fixing variable name.

This commit is contained in:
David A. Mellis 2009-10-18 19:41:30 +00:00
parent 650dc075a4
commit 3afe2e0713
1 changed files with 1 additions and 1 deletions

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);
}