Redstone Basics

From Zero to Your First Automated Farm

Last Updated: May 30, 2026 | Tested on: Minecraft Java 1.21, Bedrock 1.21

Redstone is Minecraft's electrical engineering system. With it, you can build automatic doors, hidden passages, item sorters, mob farms, and even working computers. This guide assumes zero prior knowledge — we'll start with the absolute basics and build up to your first working machine.

Before You Start: Gather these materials: Redstone dust (20+), Redstone torches (10+), Levers/Buttons (5+), Pistons (4+), Building blocks (1 stack), and a Note Block (for testing).

Understanding Redstone Power

Redstone works on a simple principle: power sources send energy through redstone dust to activate mechanisms. Think of it like water flowing through pipes.

Power Sources (The Battery)

These blocks create redstone power:

Power Strength (Signal Levels)

Redstone power has 16 levels (0 to 15). Each block of redstone dust reduces the signal by 1. A lever outputs level 15, which travels 15 blocks before dying.

Signal Strength Visualization: [Lever=15] — [14] — [13] — [12] — [11] — [10] — [9] — [8] — [7] — [6] — [5] — [4] — [3] — [2] — [1] — [0=Dead]
Pro Tip: Place a Redstone Comparator next to a container (chest, furnace, hopper) to measure how full it is. Output strength = (items / max items) × 15. This is the foundation of item sorting systems.

Essential Components

🔲 Redstone Dust

The "wire" of your circuit. Place on solid blocks or the ground. Cannot power blocks above it unless directed upward. Right-click to change connection direction.

🔦 Redstone Torch

Provides constant power. When the block it's attached to receives power, the torch turns OFF (this is called an inverter or NOT gate). This property is the basis of all logic circuits.

🔨 Piston (Regular & Sticky)

Regular pistons push blocks. Sticky pistons push AND pull blocks. Maximum push limit: 12 blocks. Cannot push obsidian, bedrock, or containers. Powered pistons extend instantly but retract slowly (unless using a 0-tick pulse).

📦 Hopper

Transfers items between containers. Points in the direction you click when placing. A powered hopper is LOCKED and won't transfer items. This is crucial for item sorters.

⚖️ Redstone Comparator

Two modes (right-click to toggle): Compare mode (default) outputs signal if side input ≥ back input. Subtract mode outputs back − side. Also measures container fullness and compares item frame rotation.

Your First Circuit: Automatic Door

Let's build something practical right now. This 2×2 piston door opens when you step on a pressure plate.

1 Dig the Foundation

Dig a 4×3 area, 2 blocks deep. This will be the hidden mechanism underneath your door.

2 Place Pistons

At the back of your trench, place 2 sticky pistons facing forward (toward you), stacked vertically. These will push the door blocks.

3 Add Door Blocks

Place your door material (wood, stone, etc.) in front of the pistons. These are the blocks that will move.

4 Wire It Up

Place redstone dust on the floor connecting the pistons to where your pressure plate will go. Run the dust under the floor to the front of the door.

5 Add the Trigger

Place a stone pressure plate 2 blocks in front of the door, at ground level. Cover the mechanism with floor blocks. Test by walking on the plate!

Common Mistake: Pistons won't activate if redstone dust is placed directly on the piston. The dust must power the block the piston is attached to, or point into the piston.

Logic Gates Explained Simply

Logic gates are the building blocks of complex machines. Here are the three you need to know:

Gate What It Does Minecraft Use Case
NOT (Inverter) Output is opposite of input Redstone torch on powered block = OFF
AND Output ON only if BOTH inputs are ON Door opens only if lever A AND lever B are on
OR Output ON if EITHER input is ON Door opens from pressure plate OR button

Next Steps: What to Build

Now that you understand the basics, try these projects in order:

  1. Hidden Staircase: Use pistons to create a wall that opens into a staircase. Practice with block updates and timing.
  2. Item Elevator: Use water streams and bubble columns (soul sand + water) to move items upward. Add hoppers at top and bottom.
  3. Simple Mob Farm: Build a dark room with water streams pushing mobs to a drop chute. Uses spawning mechanics + redstone for collection.
  4. Item Sorter: Uses hoppers, comparators, and redstone torches to automatically sort items into chests. The holy grail of redstone automation.
Learning Path: Don't try to build an item sorter on day one. Master each component individually, then combine them. The best redstone engineers understand every block's behavior before building complex machines.