const int LED=9; // Define LED for pin 9
void setup()
{
pinMode (LED, OUTPUT); // Set the LED pin as an output
digitalWrite(LED, HIGH); // Set the LED pin high
}
void loop()
{
// We are not doing anything in the loop!
}
const int LED=9; // Define LED for pin 9
void setup()
{
pinMode (LED, OUTPUT); // Set the LED pin as an output
digitalWrite(LED, HIGH); // Set the LED pin high
}
void loop()
{
// We are not doing anything in the loop!
}