Redstone basics: signal strength, repeaters and comparators explained

Redstone has three concepts that explain almost everything: signal strength, the difference between a repeater and a comparator, and update order. Most players learn circuits by copying them; learning these three lets you read a circuit instead.

Signal strength

A redstone signal starts at 15 and loses one per block of dust it travels. At zero it stops. That is the whole rule and it is the source of most “why doesn’t this work” problems – a line of dust fifteen blocks long delivers nothing at the far end.

A repeater resets the signal to 15. That is its primary job; the delay it adds is secondary and is what most people think it is for.

Repeaters

The locking behaviour is the underused one. A locked repeater holds its output regardless of input, which is a one-block memory cell.

Mechanical contraption in a Minecraft build

Comparators

A comparator has two modes and both confuse people. In comparison mode it outputs its input unless a side input is stronger, in which case it outputs nothing. In subtraction mode it outputs the difference between the back input and the strongest side input.

What makes it essential is the other thing it does: read containers. A comparator behind a chest, furnace, hopper or cauldron outputs a signal proportional to how full it is. That is how every “is this container empty” circuit works.

The container reading scale

A single item in a double chest produces signal strength 1. Full produces 15. The scale is not linear in a way that matters for precision work, which is why item-counting circuits use specific item counts calibrated by trial.

For most purposes – is the furnace done, is the hopper backed up, has the farm produced anything – a nonzero signal is all you need.

Observers

An observer outputs a one-tick pulse when the block in front of it changes state. Crops growing, a piston extending, a door opening, water flowing – all detectable.

Observers replaced most clock circuits for farm automation because they fire exactly when something happens rather than repeatedly on a timer. The pattern is the basis of nearly every modern crop farm, and why crop farms fire exactly once takes the circuit apart block by block.

Automated farm mechanism with pistons

Pistons versus sticky pistons

A piston pushes and lets go. A sticky piston pushes and pulls back. Both push up to twelve blocks, both cannot move obsidian, bedrock or any block with an inventory.

The classic failure is a sticky piston dropping the block it was holding, which happens with a one-tick pulse. That behaviour is exploited deliberately in some designs and is a bug in others, which is a fair summary of redstone generally.

Quasi-connectivity

Pistons and dispensers can be powered by a block diagonally above them, which is not how anything else in redstone works. It is a leftover from early development that was never removed because thousands of builds depend on it.

Java Edition has it, Bedrock does not, and this is the single largest reason redstone designs do not transfer between editions.

A first useful circuit

  1. Place an observer facing a crop block.
  2. Put a piston behind the crop, facing it.
  3. Run dust from the observer to the piston.
  4. Hoppers and a chest under the crop row.

Four blocks, and it harvests automatically the moment the crop matures. Every larger farm is this circuit repeated.

Where redstone belongs in a base

Behind walls, mostly. A functional circuit that is visible tends to look like a circuit, and there is a real tension between building something that works and building something that looks intentional.

Door mechanisms are the usual first attempt at hiding a circuit, and the working versions are smaller than people expect – the automatic door that actually works is three blocks and fits inside a wall.

Debugging a circuit that does not work

That last one causes more mystery activations than anything else. Redstone dust on top of a block makes that block a power source for everything adjacent to it.

What to learn next

Once signal strength, repeaters and comparators make sense, everything else is composition. Clocks, memory cells, item sorters and hopper timers are all built from those three components plus observers, and none of them require new concepts.

The single most useful next step is an item sorter, because it changes how a base is organised permanently rather than saving a few seconds.

Images: Create Deco project gallery on Modrinth.