100% Free Forever
AI-Powered Learning
Industry Expert Content
Certificates & Badges
Learn At Your Own Pace
Programming

What Is Arduino?

An introduction to Arduino as an open-source electronics platform combining a programmable microcontroller board with a simple software toolchain for building interactive projects.

FoundationsBeginner8 min readJul 10, 2026
Analogies

Arduino: Hardware and Software Together

Arduino is an open-source electronics platform built around easy-to-use hardware and software. At its core is a physical, programmable circuit board — a microcontroller board — paired with an Integrated Development Environment (IDE) that runs on your computer. You write instructions in the IDE, upload them to the board over USB, and the board executes them standalone, reading sensors and controlling outputs like LEDs, motors, and displays. Because both the board designs and the software are open source, anyone can study, copy, and extend them.

🏏

Cricket analogy: Just as a cricket team pairs a batter with a runner to score, Arduino pairs a hardware board with IDE software — neither wins the match alone, but together they turn intent into runs on the board.

The Microcontroller at the Heart

The classic Arduino Uno uses an ATmega328P microcontroller — an 8-bit chip running at 16 MHz with 32 KB of flash memory for your program, 2 KB of SRAM for variables, and 1 KB of EEPROM for persistent storage. Unlike a Raspberry Pi, which runs a full operating system like Linux, an Arduino runs a single program directly on bare metal with no OS. This makes it deterministic and instantly ready at power-on, which is ideal for real-time control of pins, timers, and interrupts.

🏏

Cricket analogy: The ATmega328P is like a specialist T20 finisher such as MS Dhoni: not a versatile all-format squad like a full PC, but tuned to do one job — hit the death overs — reliably every time.

Boards, Shields, and the Ecosystem

The Arduino family spans many boards for different needs: the Uno for learning, the Nano for compact projects, the Mega for many I/O pins, and Wi-Fi-capable boards like the Nano 33 IoT or MKR series for connected projects. Add-on boards called shields stack onto the headers to add capabilities — motor drivers, Ethernet, GPS, or sensor arrays — without soldering. A large community publishes reusable libraries and thousands of open tutorials, which is why Arduino became the default entry point into physical computing.

🏏

Cricket analogy: Choosing between Uno, Nano, and Mega is like picking your XI for the pitch: a spinner-heavy side for Chennai, a pace attack for Perth — same game, board matched to conditions.

Arduino is both a company and an open-source community. Because the reference designs are open, you'll find many low-cost compatible clones. They run the same code, but official boards fund ongoing development and typically have better build quality and USB reliability.

What You Can Build

Because an Arduino reads inputs and drives outputs, it is the brain for countless interactive projects: temperature-logging weather stations, plant-watering systems, LED animations, robots, home-automation controllers, and musical instruments. A typical program follows a sense-decide-act loop: read a sensor value, compare it against a threshold in code, then switch an output such as a relay or motor. Below is the essential shape of any Arduino program, which you'll meet again in the sketch-structure topic.

🏏

Cricket analogy: The sense-decide-act loop is like a fielder tracking the ball's line, judging the angle, then diving to stop the boundary — perceive, choose, execute in one fluid motion.

cpp
// The universal shape of an Arduino program
void setup() {
  pinMode(LED_BUILTIN, OUTPUT);  // runs once at power-on
}

void loop() {
  digitalWrite(LED_BUILTIN, HIGH);  // sense-decide-act, forever
  delay(500);
  digitalWrite(LED_BUILTIN, LOW);
  delay(500);
}

Arduino boards run on low voltage (typically 5V or 3.3V logic). Never connect mains AC directly to the board's pins, and never draw more than about 20 mA from a single I/O pin or 200 mA total — exceeding these limits can permanently damage the microcontroller.

  • Arduino is an open-source platform combining a programmable microcontroller board with a free IDE.
  • The Uno's ATmega328P is an 8-bit, 16 MHz chip with 32 KB flash, 2 KB SRAM, and 1 KB EEPROM.
  • Unlike a Raspberry Pi, Arduino runs a single program on bare metal with no operating system.
  • A board family (Uno, Nano, Mega, MKR) and stackable shields let you match hardware to the project.
  • Programs follow a sense-decide-act loop: read inputs, apply logic, drive outputs.
  • Respect electrical limits — roughly 20 mA per pin — and never wire mains AC to I/O pins.

Practice what you learned

Was this page helpful?

Topics covered

#Programming#ArduinoProgrammingStudyNotes#WhatIsArduino#Arduino#Hardware#Software#Together#StudyNotes#SkillVeris#ExamPrep