Design, Technology

Run your First Program in Arduino

This is Arduino IDE(Integrated Development Environment)

Our aim in this short tutorial is to show you how to set up the Arduino IDE software to run a sketch.

If you have not Downloaded IDE, then Click the Picture Below

Step 1:

Open the Arduino IDE software.

Step 2:

Click File> Examples > Basics> Blink

Step 3:

Click upload. Then observe your sketch blink the onboard LED.

 

If you don’t want to go to the blink Menu, you can write the Program below.

You Don’t Need to Attach any LED to 13 PIN because Arduino Uno Board has an Inbuilt Led on 13 pin

void setup()

{

pinMode(13,OUTPUT); // Pin initialization

}

void loop()

{

digitalWrite(13,HIGH); // Turning On LED

delay(10000); // For 10000 ms = 10 sec

digitalWrite(13,LOW); //Turning OFF LED

delay(1000); // For 1000 ms = 1 sec

}

Step 4:

Update the code. Then upload the sketch, and watch the LED by change of delay.

Hurray you, made one program with Arduin

9 thoughts on “Run your First Program in Arduino

  1. Nawal says:

    Nice explaination

  2. prabhjeet.singh88 says:

    Nice and perfectly explained

  3. JgkSF says:

    Best explanation ever.
    Nice Post and website.

  4. postingfvvg says:

    I’m happy to read your blog I understand properly!
    Thanks
    Robosync

  5. Matthewplefe says:

    Thanks For your valuable Service and Support

  6. SoniareniA says:

    Robosync Service is best.

  7. MashareniA says:

    I recently purchased one product from Robosync Service was best.

Leave a Reply