Arduino SA
  • Learn @ Arduino SA
  • Arduino Introduction
  • Support
    • Setup your Computer
    • Adding Libraries
    • Setting up a ESP32
  • Arduino Robot Car
    • Arduino Bluetooth Car
      • What you will need
      • Circuit Diagram
      • Assembly the Car
      • Upload the Code
      • Bluetooth setup and Test
    • 4WD Obstacle Avoidance
      • Introduction
      • Component List
      • Assembly
      • Component Description
      • Circuit Diagram
      • Computer Setup
      • Line Tracking Mode
      • Obstacle Avoidance Mode
  • Arduino Kits
    • Smart Plant Watering Kit
      • What you will need
      • Wiring Diagram
      • The Code
      • Pics
    • Basic Starter Kit
      • Component View
      • Installing the IDE
      • Add Libraries
      • Blink
      • Button Control LED Delay Switch
      • Active Buzzer
      • Passive Buzzer
      • Servo
      • IR Remote and Receiver
      • Stepper Motor
      • Eight LED with 74HC595
      • LCD
      • Digital tube with Traffic Light Experiment
      • Four digit tube display
      • LM35D Temperature Sensor
      • LDR 5516 experiment
      • Flame Sensor
      • 8 * 8 LED Module
      • Controlling Stepper Motor With Remote
    • Super Starter Kit
      • Tutorials
    • Best Beginner Kit for Arduino
      • Tutorials
    • Uno R3 RFID Kit
    • WIFI ESP32 IOT Kit
    • Arduino School STEM Kit
    • Arduino Ultimate Starter Kit
  • Blocking Coding Lessons
    • Beginner Lessons
      • Setting up mBlock
      • Blinking an LED
      • LED Switching
      • LED Chasing
      • Traffic Signal
      • Buzzer
      • Buzzer + Push Button
      • LED + Push Button
  • Sensor Kits
    • 37-in-1 Sensor Kit
      • Joystick
      • Relay
      • Big Sound
      • Small Sound
      • Tracking
      • Avoid
      • Flame
      • Linear Hall Sensor
      • Touch
      • Digital Temperature
      • Buzzer
      • Passive Buzzer
      • RGB LED
      • SMD RGB
      • Two-Color 5mm
      • Two Color 3mm
      • Reed Switch
      • Mini Reed
      • Heartbeat
      • 7 color flash
      • Laser emitter
      • PCB mounted push Button
      • Shock switch
      • Rotary encoder
      • Light Cup
      • Tilt Switch
      • Rolling ball tilt switch
      • Photoresistor
      • Temp and Humidity
      • Analog Hall
      • Hall Magnetic
      • Temp
      • Analog Temp
      • IR Emission
      • IR Receiver
      • Tap Module
      • Light blocking
Powered by GitBook
On this page
  • Download Arduino IDE
  • Install the drivers
  • Upload a Blink program

Was this helpful?

  1. Support

Setup your Computer

When you get the UNO development board, first you should install the Arduino software and driver.

PreviousArduino IntroductionNextAdding Libraries

Last updated 3 years ago

Was this helpful?

Download Arduino IDE

Go to to download the installation file according to your operation system.

For Windows users, please follow the instructions below. For Mac and Linux users, you can directly use the Arduino sketch by simply clicking on the file.

Install the drivers

Installing drivers for the Arduino Plug in your board and wait for Windows to begin its driver installation process. After a few moments, despite its best efforts, the process will fail, but do not panic! Click on the Start Menu, and open up the Control Panel.

Find Unknown Device and then right click and select Update Driver Software.

Choose browse my computer for driver software to search for drivers manually

Click Browse and find the directory location of the Arduino IDE where the installation files are located. Inside this directory will be another directory named Drivers. Select it and click Next .

This dialog indicates successful installation. Hopefully this is what you will see! If not double check the steps and try again.

If you go back to your device manager, the Arduino device should now be recognised by your computer.

Go to “Device Manager” >“Ports (COM & LPT)”. You should see “Arduino no (COM#)”. This is the COM port that your computer uses to transfer data to your Arduino. In our example the computer communicates with the Arduino on COM36

Remember your COM number as you will need it later.

Upload a Blink program

Open Arduino IDE and take a moment to move your mouse along each icon to get to know their functions. Here we will use a very basic sample code, Blink to go through the whole process and test whether the controller is working.

Open the LED blink example sketch. You will find it under File > Examples > 01.Basics > Blink.

Click “Verify” to compile the code. The IDE changes the code from text into instructions that the computer can understand. This process is called compiling.

Verifying....

Finished!

The code we are using should not have errors since it is an example code. If a code does have errors in it it will fail to verify.

Time to download the code to your Arduino! Select your micro-controller by selecting “Board > Arduino Uno”

Then select your COM port by selecting “Serial Port” and selecting the COM port number you saw earlier. In our example COM36 is in use.

Click Upload to send the code via the USB to you Arduino Board

After it is finished, the Arduino will run the code automatically and the onboard LED will start to blink, just as programmed!

If the above does not work. Please download this install it on you PC and try the above again

driver
http://arduino.cc/en/Main/Software