Skip to content
FlintMindsHigh School

Build systems that have to work.

4 builds, ordered by what each one assumes you can already do — from a single controlled output up to a multi-sensor system that manages itself. Nothing is locked, and every project says plainly what it expects of you.

One of them

Line-Following Robot

Inventor · 1 hr 30 min

The control loop

  1. PerceptionTwo sensors read whether the line is under the left or right side.

  2. DecisionYour code compares both readings to figure out which way to correct.

  3. ActionThe motors turn at different speeds to steer back onto the line.

  4. RepeatThis sense-decide-correct cycle runs continuously — that's closed-loop control.

What it assumes you can do

  • Reading a sensor's input
  • Controlling a motor with code
  • Tracking state across a program
  • Combining sensor input with motor output
  • Designing automated behavior

Derived from the builds that lead into this one — not a gate. You can start here.