Why does the motordriver example have
// the setup routine runs once when you press reset:
void setup() {
// initialize the outputs.
pinMode(led, OUTPUT);
pinMode(led, OUTPUT);
pinMode(led, OUTPUT);
pinMode(led, OUTPUT);
}
It doesn't compile with it, because LED isn't defined.
What is the reason for this?