Electronics made exciting

Build.
Code.
Create.

Learn Arduino the fun way — by making real things. Follow clear, step-by-step projects, understand every line of code, and go from your first blinking LED to a robot that drives itself.

// blink.ino

void setup() {
  pinMode(9, OUTPUT);
}

void loop() {
  digitalWrite(9, HIGH);
  delay(500);
  digitalWrite(9, LOW);
  delay(500);
}
Your first circuit ⚡
How it works

Three steps, every single time

Every project on this site follows the same simple rhythm. Learn it once and you can build anything.

1. Wire it up

Follow the wiring guide and photos to put your circuit together on a breadboard. No soldering, no mess.

2. Write the code

Copy the sketch, then read the line-by-line explanation so you understand exactly what each part does.

3. Make it yours

Every project ends with upgrade ideas and challenges — change it, break it, and make it better.

Featured projects

Pick something and build it today

From a 30 minute traffic light to a robot car that explores your room.

🚦🟢 Beginner

Traffic Light

Build a real working traffic light that cycles red, yellow and green — your first timing project.

30 min 5 parts
Arduino UnoRed / Yellow / Green LED3 × 220Ω resistor+2 more
Build This
🌙🟢 Beginner

Smart Night Light

A light that switches itself on when the room gets dark — your first project that senses the world.

40 min 6 parts
Arduino UnoLDR (photoresistor)10kΩ resistor+3 more
Build This
📡🟡 Intermediate

Ultrasonic Radar

A sweeping radar that measures distance while a servo turns the sensor left and right.

1.5 hrs 5 parts
Arduino UnoHC-SR04 ultrasonic sensorSG90 servo+2 more
Build This
🚗🔴 Advanced

Obstacle-Avoiding Car

A robot car that drives on its own and steers away from walls and furniture.

3 hrs 7 parts
Arduino UnoL298N motor driver2 × DC gear motor+4 more
Build This
🎲🟢 Beginner

Electronic Dice

Press the button and seven LEDs light up in a real dice pattern from one to six.

45 min 6 parts
Arduino Uno7 × LED7 × 220Ω resistor+3 more
Build This
🏠🔴 Advanced

Mini Smart Home

A cardboard house with automatic lights, a motion-sensing door and a climate display.

4 hrs 8 parts
Arduino UnoPIR motion sensorDHT11+5 more
Build This

Learn how it all works

Real articles, not bullet-point cheat sheets. Voltage explained with water pipes, buttons explained with springs, and code explained one idea at a time.

Open the lessons

Take on a challenge

A goal, a few hints, and an explanation waiting for you at the end. Build a reaction-time game, a parking sensor, or your own SOS beacon.

Try a challenge