Definition & the three components
An automated system is a computer system that collects information from its surroundings and then reacts to that information by performing tasks — all on its own, with no person deciding what to do in the moment. The human's involvement happens earlier, when the system is programmed with the rules it should follow. Once it's running, it just watches the world and reacts to it.
Every automated system, no matter how complicated it looks on the outside, is built from exactly three components working together in a loop:
- Sensor — collects information about the environment (e.g. temperature, light, motion, pressure) and feeds it to the microprocessor as an input.
- Microprocessor — the decision-maker. It takes the data from the sensor, processes it, and compares it against pre-programmed rules (thresholds/stored values) to decide what should happen next.
- Actuator — takes the microprocessor's decision and turns it into a real, physical change in the world. This is the system's output.
Analogy — think of your own body: Your skin sensing heat is the sensor. Your brain deciding "that's too hot, pull away!" is the microprocessor. Your arm muscles actually pulling your hand back is the actuator. The whole reflex happens automatically — you don't consciously plan each step, you just react. That's exactly how an automated system behaves.
┌───────────┐ data ┌────────────────┐ signal ┌───────────┐
│ SENSOR │ ───────────────▶ │ MICROPROCESSOR │ ──────────────▶ │ ACTUATOR │
│ (input) │ (converted to │ (processes & │ (decision = │ (output) │
│ │ digital data) │ makes decision)│ instruction) │ │
└───────────┘ └────────────────┘ └───────────┘
▲ │
└───────────────────── physical change happens ◀────────────────┘
(system keeps monitoring — the loop repeats)
Examples of the physical changes an actuator can make include:
- Opening or closing a door or valve (e.g. an automatic irrigation valve turning on when soil is too dry)
- Activating an alarm (e.g. a smoke detector sounding a siren)
Key Rule
Sensor = Input → Microprocessor = Process/Decide → Actuator = Output. If you can label these three parts in any scenario, you can answer almost any "describe how this system works" question.
Practice Question 1
A greenhouse has a system that automatically opens a roof vent when it gets too hot inside. Identify the sensor, microprocessor, and actuator in this system, and briefly describe what each one does.
Practice Question 2
Explain why a system that only had a sensor and an actuator (no microprocessor) could not be called a true "automated system" in the IGCSE sense.