ASSEMBLY — TECHNICAL FIELD GUIDE / ТЕХНИЧЕСКИЙ СПРАВОЧНИК
PHASEGETTING STARTED
MODULE
STATUS
FIG. 00 — FROM A BLINKING LED TO A REAL SPACECRAFT BEGINNER LEVEL

ASSEMBLY
BUILD YOUR OWN CUBESAT, FROM FIRST PRINCIPLES

Ten chapters that start with a single Arduino and a blinking LED, build up the electronics you actually need to understand, and end with an exploded, clickable view of every system inside a real 10-centimetre satellite. Scroll to begin.

BEGIN — CHAPTER 01
CH.01 / 10WHAT IS A CUBESAT

A satellite standardised down to a cube

A CubeSat is a satellite built from standard 10×10×10 cm units, called "U." One U is the smallest unit; two or three can be stacked into a 2U or 3U satellite. The standard exists so a huge range of student, hobbyist, and professional satellites can all share the same launch hardware and deployment mechanism — that standardisation is what makes building your own remotely realistic.

This guide builds up the electronics knowledge from scratch, then walks through every system a real 1U CubeSat needs — structure, power, computing, sensing, and communication — before pointing to what an actual first build looks like.

1U

10×10×10 cm — the base unit

2U

Two units stacked — more room for instruments

3U

The most common size flown by student teams

CH.02 / 10ELECTRICITY IN THREE IDEAS

Voltage pushes, resistance resists, current flows

Three quantities describe almost any simple circuit. Voltage is the electrical "push" — how hard electrons are being driven around a loop. Current is how many electrons actually flow past a point per second. Resistance is whatever pushes back against that flow — including the resistor you deliberately add to protect a component like an LED.

Ohm's law ties all three together. Drag the sliders and watch the current — and the LED — respond.

VOLTAGE (V)5.0 V
RESISTANCE (Ω)220 Ω
I = V / R
22.7 mA
CH.03 / 10YOUR FIRST CIRCUIT

An Arduino, a resistor, an LED, four wires

An Arduino is a small board with a microcontroller — a tiny computer that can turn its pins on and off under program control. Wire an LED and a resistor to one digital pin and ground, and you have the simplest complete circuit in electronics: a closed loop the microcontroller can switch.

This exact circuit — a microcontroller switching a component on and off on a timer — is the direct ancestor of how a CubeSat blinks its status light, fires a deployment mechanism, or wakes up a sensor.

// blinks the LED once per second
void loop() {
  digitalWrite(LED_PIN, HIGH);
  delay(500);
  digitalWrite(LED_PIN, LOW);
  delay(500);
}
CH.04 / 10SENSORS & INPUTS

Teaching a circuit to notice things

A blinking LED is an output. A satellite also needs inputs — sensors that turn a physical quantity into a voltage a microcontroller can read.

CH.05 / 10THE BRAIN: HOBBY BOARD VS FLIGHT COMPUTER

Same principle, very different guarantees

An Arduino is the perfect place to learn the logic every onboard computer (OBC) uses — but a real flight OBC has to survive radiation, temperature swings, and total isolation from a repair technician.

CH.06 / 10POWER: SOLAR PANELS & BATTERIES

Wire cells for voltage, or wire them for current

Connect solar cells in series (end to end) and their voltages add up, while the current stays the same as a single cell. Connect them in parallel (side by side) and it's the reverse — voltage stays the same, current adds up. Real CubeSat solar panels mix both, tuned to charge a specific battery pack at a specific voltage.

A small onboard battery — usually lithium-ion — stores charge for the roughly 35 minutes of every 90-minute orbit spent in Earth's shadow, when the solar panels produce nothing at all.

SERIES — VOLTAGES ADD

+−+−+3×2V = 6V

PARALLEL — CURRENTS ADD

3×0.5A = 1.5A
CH.07 / 10COMMUNICATION: GETTING DATA HOME

A satellite that can't talk is just space debris

CH.08 / 10ANATOMY OF A 1U CUBESAT

Every system from this guide, stacked into one cube

Drag the slider to pull the stack apart, then click any board to see what it does — and which chapter it came from.

EXPLODE0%
CH.09 / 10TESTING BEFORE LAUNCH

No repair truck goes to orbit

CH.10 / 10YOUR BUILD ROADMAP

From a breadboard on your desk to a rideshare to orbit

Every step here is something you can actually start this weekend.