Installation instructions
Installation instructions
Requirement
Arduino software , arduino board with cable
Step 1: Download Arduino IDE Software.
Download page on the Arduino Official website. You have to pick software, which is compatible with your operating system (Windows, IOS, or Linux). After your file download is complete, unzip the file.

Step 2: Power up arduino board.
Connect the Arduino board to your computer using the USB cable. The green power LED (labeled PWR) should glow.
Step 3: Launching Arduino IDE.
After your Arduino IDE software is downloaded, you need to unzip the folder. Inside the folder, you can find the application icon with an infinity label (application.exe). Double-click the icon to start the IDE.

Step 4: Now Open your first project.
Once the software starts, you have two options −
- Creating a new project.
- Openning an existing project sample.
To create a new project, select File >>>>>> New.
Launching an existing project example, go to File >>>>>> Examples.
Now go to File >>>>>> Examples>>>>>> Basics >>>>> fade (we now want to upload the board)
Step 5: Select your Arduino board.
You have to select the correct Arduino board name, that matches with the board connected to your computer else you will get while uploading your program to the board, .
Navigate to Tools >>>> Board and select your board.
We have selected Arduino Uno board , but note you must select the name matching the board that you are using.
Step 6: Select your serial port.
Navigate to Tools >>> Serial Port This is likely to be COM3 or higher (COM1 and COM2 are usually reserved for hardware serial ports). To find out, you can disconnect your Arduino board and re-open the menu, the entry that disappears should be of the Arduino board. Reconnect the board and select that serial port.
Step 7: − Uploading program to your board.
You can use icon yellow in color in the Arduino IDE toolbar for you to upload sketch(code).
Click the "Upload" button in the environment. Wait a few seconds; you will see the RX and TX LEDs on the board, flashing. You should be able to see, the message "Done uploading" in the status bar If the upload is successful.
Comments
Post a Comment