.sidebar .widget-content { font-size: 50px !important; }

Ad Code

Responsive Advertisement

Arduino LED blinking


  • This is very simple arduino project 
  • Digita pin no. 5 will blink only.
Code:
void setup()
         {
         pinMode(5,OUTPUT);
        }
void loop()
              {
               digitalWrite(5,HIGH);
               delay(1000);         
              digitalWrite(5,LOW);
              delay(1000);
             }

Post a Comment

0 Comments

Ad Code

Responsive Advertisement