So from now you are familiar with the main parts of Arduino so let’s get started and get our hands dirty.
In this tutorial we will be installing the IDE of Arduino to upload our code to board.
Software Requirement:
Hardware requirement:
Steps:
Step 1: Download and install the IDE
Step 2: Launch the IDE
Step 3: Power up your board
Step 4: Open first project
Once you have installed the IDE you have two options:
To create a new project:
Top open an existing project:
In this case we are selecting one of the examples labeled as “blink”
Which make the default LED (On PIN no 13) blink with a delay of 1 second
Step 5: Select Arduino board
You have to select the board you are using in your IDE as the Arduino IDE support number of boards.
For selecting board:
Step 6: Select PORT
Select the port on which your board is connected
To select PORT:
Step 7: Compile and Upload the code
To compile the code:
To upload the code:
Conclusion:
Uploading a code mean to transfer the code from one place to other. In the uploading process the code will saved on to the microcontroller's memory for future usage.
You will see “Done uploading” message and the default LED blinking if the code is successfully uploaded to the board.