monostable
Having more than one state, only one of which is stable.
monostable: a circuit that sits in one place until kicked
A monostable circuit is an electronic device or configuration that has exactly one stable state. When triggered by an external signal, it briefly assumes a second state for a defined duration, then returns automatically to its stable condition. Unlike a bistable circuit (which remains in whichever state it was set to), or an astable circuit (which oscillates between states continuously), a monostable performs a single, predictable pulse or transition each time it receives the right input.
The classic component is the monostable multivibrator, also called a one-shot. In its rest state it outputs a low voltage or no output. A trigger pulse at its input causes the output to swing to a high voltage for a duration determined by an RC time constant (a resistor and capacitor paired together). When that time elapses, the output snaps back to its stable low state, regardless of what the input is doing. The duration is set by the designer and does not depend on how long the trigger pulse lasts.
Common uses and failure modes
Monostables are used to debounce mechanical switches, generate timing pulses for sensor systems, and create pulse-width-modulated control signals. In industrial control, a monostable might stretch a brief button press into a clean, controlled signal that a PLC can reliably detect. They also protect circuits from contact bounce: a switch that physically contacts multiple times in milliseconds will trigger the monostable just once, delivering a single, clean pulse downstream.
Problems arise when the RC time constant drifts due to temperature or component aging, or when the trigger signal is too weak to overcome the input threshold. High-frequency noise can also cause false triggering. The circuit may be implemented as a dedicated IC (such as the 555 timer in monostable mode) or built from discrete components like transistors and passive parts.
The term "monostable" comes from the Greek roots meaning one stable state. It distinguishes this behavior clearly from bistable devices (flip-flops), which hold either of two states indefinitely, and from oscillators, which have no stable state at all. In modern digital systems, monostable behavior is often replicated in firmware using counters and software timers, but the hardware one-shot remains valuable for analog signal conditioning and sub-microsecond timing where software latency is unacceptable.