Skip to main content
Pulse Circuits

MONOSTABLE CIRCUIT

Produces exactly one output pulse of a fixed duration regardless of how long the input is held. Combines pulse limiting and edge detection for reliable single-shot behavior.

Monostable Circuit in Minecraft

When to Use

Ensuring exactly one dispenser shot per button press, reliable T flip-flop input, debouncing noisy signals.

Materials

  • 1 Redstone Repeater
  • 1 Redstone Comparator
  • Redstone Dust
  • Solid blocks

Overview: what the Monostable Circuit is and does

Produces exactly one output pulse of a fixed duration regardless of how long the input is held. Combines pulse limiting and edge detection for reliable single-shot behavior.

As a pulse circuit it reshapes the length or edges of a signal rather than generating one, which is how redstoners tame button presses and observer flashes.

In practice it is used for ensuring exactly one dispenser shot per button press, reliable T flip-flop input, debouncing noisy signals. The build below targets vanilla Java Edition 1.21.

How it works: the redstone mechanics

It combines edge detection with pulse limiting so that one rising edge produces exactly one output pulse of fixed length, no matter how long the input is held. The feedback loop blocks re-triggering until the input fully resets.

It is assembled from 1 Redstone Repeater, 1 Redstone Comparator, redstone Dust, and solid blocks, and each of those parts plays a specific timing or logic role in the circuit rather than being interchangeable filler.

Because this is a pulse-shaping circuit, the thing to watch as you build is the relative timing of the two signal paths, since the output window is the gap between them.

How to build it

  1. 1Run input through a repeater set to 1 tick.
  2. 2Split the repeater output: one path to the circuit output, one path looping to a comparator side input.
  3. 3The comparator compares the direct input (back) against the delayed loop (side).
  4. 4On the rising edge of the input, the output fires for exactly the repeater delay duration.
  5. 5The feedback loop prevents re-triggering until the input fully resets.
  6. 6Power it up and watch one full cycle: confirm it produces a pulse of the length you intended before wiring it into a larger contraption.

Uses & applications

  • Ensuring exactly one dispenser shot per button press, reliable T flip-flop input, debouncing noisy signals.
  • Comparator monostable (most compact) — a variant suited to particular space or timing needs.
  • Piston monostable (mechanical, very reliable) — a variant suited to particular space or timing needs.
  • Dropper-based monostable (item-count dependent) — a variant suited to particular space or timing needs.

Tips & common mistakes

  • !It is the right tool when a button held down must still fire only once — a plain wire would let the dispenser or piston act for the whole hold.
  • !Test the output pulse length with a redstone lamp before committing — the lamp's own 2-tick off delay aside, you will see at a glance whether the timing is right.
  • !Remember that bare redstone dust loses 1 signal strength per block, so insert a repeater before any run exceeds 15 blocks inside this circuit.

Monostable Circuit FAQ

What is a Monostable Circuit used for?

A Monostable Circuit is used for ensuring exactly one dispenser shot per button press, reliable T flip-flop input, debouncing noisy signals. As a pulse circuit it reshapes the length or edges of a signal rather than generating one, which is how redstoners tame button presses and observer flashes.

What do you need to build a Monostable Circuit?

You need 1 Redstone Repeater, 1 Redstone Comparator, redstone Dust, and solid blocks. Run input through a repeater set to 1 tick.

How does a Monostable Circuit work?

It combines edge detection with pulse limiting so that one rising edge produces exactly one output pulse of fixed length, no matter how long the input is held. The feedback loop blocks re-triggering until the input fully resets.

Are there different versions of the Monostable Circuit?

Yes — common variants include comparator monostable (most compact), piston monostable (mechanical, very reliable), and dropper-based monostable (item-count dependent). Pick the one that fits your available space and timing requirements.

Back to all circuits