/* This program to glow LED using Arduino */
void setup()
{
pinMode(14, OUTPUT);
}
void loop()
{
// turn the LED on (HIGH is the voltage level)
digitalWrite(14, HIGH);
}
/* This program to glow LED using Arduino */
void setup()
{
pinMode(14, OUTPUT);
}
void loop()
{
// turn the LED on (HIGH is the voltage level)
digitalWrite(14, HIGH);
}