CV Input Signal Types

CV Input Signal Types #1 — Trigger

Trigger CV signal — Constructivist linocut illustration
PropertyValue
CategoryLogical / Time-Based
Voltage Range0..+5V (tolerant up to +12V)
PolarityUnipolar
Bandwidth<1kHz (pulses 1–10ms), edge case: audio-rate
Threshold~0.7V–2.0V (module-dependent)

Description

A trigger is a short voltage pulse (typically 1–10ms duration) that initiates a one-time event. Unlike a gate, only the rising edge matters — the pulse duration has no musical significance.

Audio-rate edge case: Some patches use audio oscillators as trigger sources (e.g., for audio-rate triggering of envelopes for AM synthesis or granular grains). The firmware must handle this without overloading the CPU through interrupt storms.

Use Cases

Eurorack Examples (Mutable Instruments)

Hardware Implementation

Recommended: GPIO (not ADC)

Triggers must not be read via a multiplexed ADC. The mux cycle (typically ~1ms) introduces up to 1ms of random jitter — audible as "flamming" in tight drum sequences.

Method 1: NPN transistor inverter (preferred)

NPN transistor inverter circuit for gate/trigger input

Method 2: Passive clamping (BAT54S)

Firmware Requirements