arduino
arduino
Step Action
1. Download IDE Visit Arduino's official website. Download the IDE for your operating system.
2. Install IDE Install the downloaded file and open the software.
Use a USB cable to connect your Arduino Uno to your
3. Connect Board
computer.
4. Select Board Go to Tools > Board and select Arduino Uno.
5. Select Port Go to Tools > Port and choose the correct COM port.
Component
1. Microcontroller
2. USB Port
3. Digital I/O Pins
4. Analog Input Pins
5. Power Pins
6. Reset Button
7. ICSP Header
8. Power Jack
9. TX and RX LEDs
10. Onboard LED (Pin 13)
11. 16 MHz Crystal
Oscillator
12. Voltage Regulator
13. EEPROM
Function
Verify
Upload
New
Open
Save
Serial Monitor
Description
The ATmega328P chip processes all instructions and executes the code uploaded via Arduino IDE.
Connects the Arduino to a computer for programming and power supply.
14 pins used for digital input/output operations. Pins 3, 5, 6, 9, 10, 11 support PWM.
6 pins (A0 to A5) used to read analog signals from sensors.
Includes 5V, 3.3V, GND, and Vin pins to provide or receive power.
Resets the program running on the Arduino.
Used for programming the microcontroller directly using an external programmer.
Connects to an external power supply (e.g., adapter or battery).
Indicate data transmission (TX) and reception (RX) between Arduino and the computer.
A built-in LED connected to pin 13 for testing and debugging.
Provides the clock signal for timing operations in the microcontroller.
Regulates input voltage (up to 12V) to a usable 5V for the microcontroller.
Non-volatile memory for storing small amounts of permanent data.
Explanation
Checks the code for errors.
Uploads the program to the Arduino board.
Creates a new sketch (program).
Opens an existing program.
Saves the current program.
Displays data from the board and allows user inputs.