Tutorial-1(LED Blinking)

 Tutorial-1 

1.1 : Led Blinking with Arduino

Code:

void setup()
{        
      pinMode(8, OUTPUT);       
}

void loop()
{
      digitalWrite(8, HIGH);
      delay(500);
      digitalWrite(8, LOW);
      delay(500);
}

 

To Understand More :

1. Article

2. Video 

Comments

Post a Comment

Popular posts from this blog