Installation of Arduino IDE
To make it as easy as possible to get started with the Arduino, the Arduino developers have created a simple but useful integrated development environment (IDE). It runs on many operating systems. Before you can create your first projects, you have to install it.
Installing the Arduino IDE on Windows
The Arduino IDE runs on all the latest versions of Microsoft Windows, such as Windows XP, Windows Vista, and Windows 7. Installing the software is easy, because it comes as a self-contained ZIP archive,8 so you don’t even need an installer. Download the archive, and extract it to a location of your choice. And it is also available in installer.
Before you first start the IDE, you must install drivers for the Arduino’s USB port. This process depends on the Arduino board you’re using and on your flavor of Windows, but you always have to plug the Arduino into a USB port first to start the driver installation process.
Note:
Step1 :
Connect the Arduino board to your PC .To connect Arduino Uno, Mega 2560, Arduino 101, Arduino Duemilanove. use USB cable type A/B .The below given cable is Type A/B
- By clicking on New project.
- By opening an example project .
Step7: Serial Port Selection:
Selection of port is important for writing the program into the Arduino.
The steps to select the port are:
- Click on the Start Menu, and open up the Control Panel.
- While in the Control Panel, navigate to System and Security. Next, click on System. Once the System window is up, open the Device Manager.
- Look under Ports (COM & LPT). You should see an open port named "Arduino UNO (COMxx)". If there is no COM & LPT section, look under "Other Devices" for "Unknown Device".
- Right click on the "Arduino UNO (COmxx)" port and choose the "Update Driver Software" option.
- Next, choose the "Browse my computer for Driver software" option.
- Finally, navigate to and select the driver file named "arduino.inf", located in the "Drivers" folder of the Arduino Software download (not the "FTDI USB Drivers" sub-directory). If you are using an old version of the IDE (1.0.3 or older), choose the Uno driver file named "Arduino UNO.inf".
- Windows will finish up the driver installation from there.
- Now open the IDE.
- Click on Tools.
- Under tools select the port.
- And click on the port no in which the Arduino is interfaced.
When you upload a sketch, you're using the Arduino
bootloader, a small program that has been loaded on to the microcontroller on
your board. It allows you to upload code without using any additional hardware.
The bootloader is active for a few seconds when the board resets; then it
starts whichever sketch was most recently uploaded to the microcontroller. The
bootloader will blink the on-board (pin 13) LED when it starts (i.e. when the
board resets).
0 Comments