New How much Minecraft really costs in South Africa — every edition in rand
MinecraftSA

Minecraft Redstone for Beginners: Power, Signals and Your First Five Builds

What redstone power actually is, every component explained in plain language, and five builds — from a hidden door to an automatic farm — that teach the fundamentals.

The short answer

Power is a number, 0–15
Sources make 15. Dust loses 1 per block. Repeaters restore it to 15.
Four things you need
A source (lever, button, torch), a wire (dust), something to control (piston, door, lamp), and eventually a repeater.
Torches invert
A redstone torch is on until the block it sits on is powered. That one rule builds every logic gate.
Comparators measure
They read how full a chest, hopper or cauldron is. That is how sorters and overflow protection work.
Java and Bedrock differ
Same components, different quirks. Learn on your own edition and check which one a tutorial is for.

What redstone power actually is

Every redstone circuit is a set of blocks that are either powered or not. Power comes from a source — a lever, a button, a pressure plate, a redstone torch, a block of redstone, a daylight sensor, an observer — and spreads to adjacent blocks according to a small set of rules. A powered block activates whatever is attached to it: a door opens, a piston extends, a lamp lights, a dispenser fires, a note block plays.

Power has a strength from 0 to 15. Sources output 15. Redstone dust carries power across the ground but loses one strength per block, so a line of dust goes dark after fifteen blocks. A repeater takes any non-zero signal and outputs a fresh 15, which is how you run wires across a base. Most components only care whether strength is above zero; comparators and a few tricks care about the actual number.

Timing is measured in redstone ticks, each one-tenth of a second (two game ticks). A repeater delays by one to four redstone ticks; a torch takes one tick to switch. Our tick converter turns any delay into real time.

Every component, plainly

ComponentWhat it doesMade from
Redstone dustThe wire. Placed on top of blocks, connects to neighbours, climbs one block up or down. Loses 1 strength per block.Redstone ore
LeverOn/off source. Stays where you leave it.Stick + cobblestone
ButtonMomentary source: 1 second (stone) or 1.5 s (wood). Wooden buttons are also hit by arrows.1 stone or plank
Pressure plateSource while something stands on it. Stone plates only respond to mobs and players; wooden to any item too; weighted (gold/iron) output strength by count.2 of the material
Redstone torchAlways-on source, unless the block it is attached to is powered — then it turns off. This is the inverter (NOT gate).Stick + redstone
Block of redstonePermanent source you can push with pistons.9 redstone
RepeaterRefreshes signal to 15, adds 1–4 ticks of delay, passes one direction only. Can be locked by powering its side.3 stone, 2 torches, 1 dust
ComparatorCompares the rear input with side inputs; in subtract mode outputs rear minus side. Reads container fullness, cauldron level, cake slices and more.3 stone, 3 torches, 1 quartz
ObserverWatches the block in front; emits a 1-tick pulse out the back whenever that block changes. The modern way to detect crops, water and pistons.6 cobblestone, 2 redstone, 1 quartz
Piston / sticky pistonPushes up to 12 blocks one space when powered; sticky pulls the front block back. Cannot move obsidian, chests, furnaces or bedrock.3 planks, 4 cobble, 1 iron, 1 redstone (+ slime ball for sticky)
HopperMoves items from above into the container it points to. Powering it stops it. The backbone of every storage system.5 iron, 1 chest
Dropper / dispenserDropper spits out an item (or passes it to a container). Dispenser also “uses” items: fires arrows, places water, shears sheep, lights TNT.7 cobble, 1 redstone (+ bow for dispenser)
Redstone lampLight source that is on while powered.Glowstone + 4 redstone
Daylight sensorOutputs strength by sunlight; right-click to invert for a night sensor.3 glass, 3 quartz, 3 wood slabs
Target blockOutputs strength by how close to the centre a projectile hits. Also redirects dust like a block.4 redstone, 1 hay bale
Note blockPlays a note when powered; pitch by clicking, instrument by the block beneath.8 planks, 1 redstone
Advertisement

The rules that trip everyone up

  • Dust powers the block it runs into, not the blocks beside it. A line of dust ending at a door powers the door. Dust running past a door does nothing unless it points at it. Dust that has only one neighbour becomes a straight line pointing at the block ahead.
  • A powered block powers everything touching it — but a block powered by dust is only “weakly” powered and does not pass power into more dust. It does activate pistons, doors and torches on it. This is the source of most “why does the second wire not work” confusion; put a repeater in the block’s place.
  • Torches turn off when their block is powered. Power a block with a torch on its side and the torch goes dark. Two torches in a chain make a delay; a torch feeding its own block makes a pulse generator that burns out.
  • Dust does not climb through blocks. It climbs stairs of blocks diagonally, and glass, slabs and glowstone let it go up but not down (transparent-block rule).
  • Pistons need a tick to move. Pushing a block into a space where dust sits breaks the dust. Plan wiring beside the moving parts, not in their path.
  • Hoppers pull from above and push where they point. A hopper under a chest empties it; a hopper pointing into a chest fills it. A powered hopper freezes. Hoppers also pick up items dropped on top of them.

Build 1: a lamp with two switches

This teaches inversion and the first logic gate. Place a redstone lamp. Place a lever touching it: the lamp turns on when the lever is on. Now place a solid block next to the lamp with a redstone torch on the far side of that block, and a second lever on the block. The torch is on by default, lighting the lamp; flipping the lever powers the block, turning the torch off and the lamp with it. You have built a NOT gate. Wire both levers to the same lamp through torches and you have an OR gate (either lever lights it) or, with the right arrangement of torches, an AND gate. Every redstone computer is made of these.

Build 2: a hidden piston door

A 2×2 door in a wall, opened by a lever, is the classic first “real” build.

  1. Build a wall three blocks high. Leave a 2-wide, 2-high hole in it.
  2. On each side of the hole, dig back into the wall two blocks. Place two sticky pistons one above the other on each side, facing into the hole, with the two blocks that will fill the hole stuck to their faces. Each pair of pistons pushes its blocks into the hole to close it.
  3. Run redstone dust to power all four pistons. The lower pistons take dust on the block behind them; the upper ones need a repeater or a torch on a block to reach them without dust sitting where a block will be pushed.
  4. Because sticky pistons close the door when powered, wire a lever through a redstone torch (an inverter) so that lever-on means door-open, or simply accept that lever-on means closed.
  5. Hide the wiring inside the wall and cover the pistons with matching blocks.

The lesson is signal routing: getting one lever to four pistons on two levels without any wire sitting in the path of a moving block. When it does not work, it is almost always dust that pointed the wrong way or a piston getting weak power from dust beside it rather than into it.

Advertisement

Build 3: an item sorter

The item sorter is the most useful redstone circuit in the game and teaches comparators. Each sorter cell handles one item type:

  1. A horizontal line of hoppers carries mixed items along the top.
  2. Under each top hopper, a second hopper pointing sideways into a third hopper (or directly into a chest below). The second hopper is the filter.
  3. In the filter hopper, put 41 of the item you want to sort in the first slot, and a single junk item that will never appear in the stream (a renamed block is the usual choice) in each of the other four slots. That fills the hopper so it can only accept the target item.
  4. Place a comparator reading out of the filter hopper into a block. Put redstone dust on that block leading to a redstone torch on the side of a block above the hopper below the filter. The comparator emits a signal of strength 2 when the hopper holds 41+ items; the torch inverts it.
  5. When a target item enters the filter (making 42), the comparator signal rises to 3, the torch turns off, the hopper below unlocks and one item passes. Signal drops, torch back on, hopper locks. Repeat.

Line up as many cells as you have item types, with a chest at the end for unsorted overflow. The whole thing runs off one line of hoppers and needs no clock. Understanding it means understanding how a comparator reads container fullness in 15 steps and how a torch can lock a hopper — which is most of practical redstone.

Build 4: an automatic crop farm

Farmland with wheat, carrots or potatoes; at one end, a row of dispensers each holding a water bucket, aimed down the rows; at the other end, a line of hoppers feeding a chest, with the farmland sloping or the water flowing toward them. A button on the dispensers (or a lever that toggles them twice) releases water, which harvests every crop in its path and washes the drops into the hoppers, then retracts when the dispensers fire again. Replant by hand, or use a villager farmer inside the enclosure who replants automatically and whose harvest the water collects.

Two refinements make it fully automatic: an observer watching a single crop, so the farm fires itself when that crop reaches full growth, and a repeater chain on the dispenser line so the water is placed and picked up on a fixed timer. This build teaches dispensers, timing, and the difference between a pulse and a steady signal.

Build 5: a clock and a sugar cane farm

A clock is a circuit that pulses forever. The simplest reliable one is a loop of repeaters: place four repeaters in a square with dust between them, set each to a delay, and briefly power one point in the loop with a torch you then break. The pulse circulates. An observer facing another observer makes a very fast clock; a hopper clock (two hoppers feeding each other with items, comparators reading them) makes a slow, adjustable one.

The sugar cane farm does not need a clock at all — it is the observer build everyone starts with. Sugar cane on sand next to water; a piston facing the second block of cane; an observer above the piston watching the third block. When the cane grows to three, the observer pulses, the piston cuts the cane at block two, the top two blocks drop, and a hopper or water stream collects them. The bottom block keeps growing. Chain it along a row and you have infinite paper for the librarian trades.

Java vs Bedrock redstone

The components are the same in both editions. The behaviour is not, and a design copied from a Java video can fail on a phone for reasons that look like bugs. The main differences:

  • Quasi-connectivity — Java pistons and dispensers respond to power on the block above them. Bedrock ones do not. Any Java build that relies on a “BUD” or powers a piston from above will not work on Bedrock.
  • Update order — Java updates blocks in a fixed order; Bedrock’s is effectively random. Circuits where two things must happen in a specific sequence need a repeater to enforce it on Bedrock.
  • Pistons — Bedrock sticky pistons do not “spit” blocks on a short pulse; instead they can leave blocks behind mid-move, and moving blocks drop items differently.
  • Redstone dust — Bedrock dust placed on a block powers it more like a repeater would, which makes some circuits simpler and others unexpectedly connected.
  • Hoppers and comparators are nearly identical, which is why storage systems port well.

When following a tutorial, check the edition in the first ten seconds. Bedrock has a large community of its own designs, and they are the ones to use on console and mobile.

Frequently asked questions

How far does a redstone signal travel?

Fifteen blocks along redstone dust. The signal starts at strength 15 and loses one per block of dust; at zero it stops. A repeater refreshes it back to 15 and can be chained indefinitely.

What is the difference between a repeater and a comparator?

A repeater refreshes signal strength, adds a delay of 1–4 ticks and only passes signal one way. A comparator compares or subtracts signal strengths, reads how full a container is, and passes signal through without a delay change. Repeaters are for distance and timing; comparators are for measuring.

Why does my redstone not work on Bedrock?

Bedrock redstone follows the same basic rules but differs in the details: pistons drop their blocks differently, quasi-connectivity does not exist, and update order is random rather than fixed. Designs copied from Java tutorials often need adjusting. Bedrock-specific tutorials exist for every common build.

What is quasi-connectivity?

A Java-only quirk where pistons and dispensers also respond to power applied to the block above them, as if they were a two-tall door. It is why a "BUD switch" works and why some Java designs behave oddly on Bedrock, which does not have it.

What is the simplest automatic farm?

A crop farm with a water dispenser: crops on farmland, a dispenser at one end loaded with a water bucket, a button or observer to trigger it. The water sweeps the crops into a hopper line. Every part of it is in this guide.

Does redstone work through walls?

Dust does not connect through solid blocks, but a solid block can be powered and then power anything touching it. Repeaters and torches pass signal through a block one way. That is how most compact circuits get signal around corners and through floors.

Building something round?

Redstone builds are often circular — the pixel circle generator gives you a block template for any diameter, and the tick converter handles the timing maths.

Advertisement
All guides →
Advertisement