Skip to content

Rhythm Section

The 555 includes Wurlitzer’s Swingin’ Rhythm system — an analog pattern sequencer that first appeared as the standalone Model 5020 drum machine in 1969 and was subsequently built into Wurlitzer’s organ line through the 1970s. The 5020 was designed by Harold O. Schwartz, Peter E. Maher, and John E. Holt at Wurlitzer’s De Kalb Division.

The rhythm section on the 555 encompasses four related subsystems, all controlled from the left panel below the manuals:

SubsystemFunctionManual Page
Swingin’ RhythmFive preset rhythm patterns14
Toy CounterAdditional percussion voices and fills14
Dancing ChordsAuto-accompaniment — chords played in rhythm15
RepeatAttack percussion on organ keys13

The features diagram from the owner’s manual shows the rhythm controls on the left side of the console:

Annotated console diagram from the owner's manual showing all controls and playing surfaces Console layout from the 1973 owner’s manual. The Swingin’ Rhythm Controls, Toy Counter Controls, Dancing Chords, and Repeat Control are all on the left panel below the upper manual. Image: The Wurlitzer Company.

Five preset rhythms, selected by pushbuttons:

PatternTime SignatureCharacter
Waltz3/4Bass on 1, brush on 2 and 3
Latin4/4Syncopated with block accents (bossa/cha-cha feel)
Swing4/4Shuffle feel with snare backbeat
Rock4/4Straight eighths, strong bass and snare
March4/4Military-style snare pattern

A tempo control adjusts the master clock speed, and a tempo indicator light flashes on the beat.

The Swingin’ Rhythm generates five analog percussion sounds, each with its own synthesis circuit:

VoiceSynthesis MethodCharacter
Bass DrumLow-frequency damped oscillatorDeep thud — a capacitor discharged through a tuned circuit produces a decaying sine wave
SnareFiltered noise with envelopeBroad-spectrum burst shaped by a fast attack/decay envelope
BrushSuper-regenerative noise circuitSofter, sustained noise — the “sizzle” sound
BlockHigh-frequency damped pulseSharp, clicky transient (woodblock/rimshot character)
CymbalBand-pass filtered noise with shimmerLonger decay than snare, with amplitude modulation for metallic shimmer

The rhythm section follows the standard 1970s analog drum machine architecture: a clock oscillator drives a binary counter chain, and a diode matrix selects which counter states trigger which percussion voices. Each rhythm pattern is a different set of connections in the diode matrix — literally a hard-wired read-only memory.

graph TD
    CLK["Clock Oscillator<br/>(tempo-controlled RC)"] --> CNT["Binary Counter Chain<br/>(divides clock into beats)"]

    CNT --> DM["Diode Matrix<br/>(pattern ROM)"]

    DM -->|trigger| BD["Bass Drum<br/>Circuit"]
    DM -->|trigger| SN["Snare<br/>Circuit"]
    DM -->|trigger| BR["Brush<br/>Circuit"]
    DM -->|trigger| BL["Block<br/>Circuit"]
    DM -->|trigger| CY["Cymbal<br/>Circuit"]

    BD --> MIX[Rhythm Mixer]
    SN --> MIX
    BR --> MIX
    BL --> MIX
    CY --> MIX

    MIX --> VOL["Rhythm Volume"]
    VOL --> AMP["Main Amplifier Bus"]

    SEL["Pattern Select<br/>(Waltz · Latin · Swing · Rock · March)"] -.->|selects matrix row| DM

    style CLK fill:#92400e,color:#fef3c7,stroke:#d97706
    style DM fill:#78350f,color:#fef3c7,stroke:#d97706
    style AMP fill:#065f46,color:#d1fae5,stroke:#10b981

The diode matrix is the heart of the pattern generator. It’s an elegant analog solution to the problem of storing repeating sequences — essentially a crossbar switch where each intersection is either connected (diode present) or not.

The binary counter cycles through a fixed number of states (typically 12 or 16 steps per measure). Each counter state represents a beat subdivision. At each state, the matrix determines which voices fire:

StepBassSnareBrushBlockCymbal
1xx
2x
3x
4x

Each “x” is a physical diode soldered on the pattern board. Changing the pattern means switching to a different set of diode connections — either a different section of the same board or a physically separate matrix, selected by the pattern pushbuttons.

The Toy Counter is a secondary percussion circuit that adds fills and accent patterns on top of the main Swingin’ Rhythm. The name comes from its circuit topology — a counting circuit (binary counter) that sequences through additional trigger outputs, producing rhythmic subdivisions that complement the main pattern.

In theatre pipe organ tradition, the “toy counter” was the department of the organ that controlled physical percussion instruments (drums, cymbals, train whistles, bird calls). Wurlitzer borrowed the name for their electronic version — a counter circuit that plays toy-like percussion accents.

The Toy Counter has its own controls on the left panel and can be enabled or disabled independently of the main rhythm.

Dancing Chords is an auto-accompaniment feature that ties chord voicing to the rhythm clock. When engaged, chords played on the lower manual (or detected from the pedals) are automatically gated in time with the rhythm pattern — the chord sustains, cuts, and re-attacks in a rhythmic pattern rather than sounding continuously.

This feature bridges the rhythm section and the organ’s tone generation — the rhythm clock gates the keying circuit, turning the sustained organ tone into a rhythmic pulse. It’s an early form of what later organ manufacturers would call “auto-chord” or “chord memory.”

The Repeat control adds a re-triggering envelope to held organ notes. Instead of a note sustaining continuously when a key is held, the envelope repeatedly attacks and decays — creating a tremolo-like percussive effect synchronized to the rhythm clock.

This is distinct from the organ’s tremolo effect (which modulates pitch and amplitude with the LFO). Repeat is a rhythmic re-attack, creating the illusion of a guitarist or mandolinist re-picking a sustained chord.

The rhythm section’s output is entirely separate from the organ voices until the final mixing stage:

graph LR
    RHY["Rhythm Voice<br/>Circuits"] --> RVOL["Rhythm Volume"]
    DC["Dancing Chords<br/>Gate"] --> KEY["Lower Manual<br/>Keying"]
    RPT["Repeat<br/>Clock"] --> ENV["Note Envelope<br/>Re-trigger"]

    RVOL --> MIX["Main<br/>Mixing Bus"]
    KEY --> MIX
    ENV --> MIX

    ORG["Organ Voices<br/>(Upper · Lower · Pedal)"] --> MIX
    ORB["Orbit III"] --> MIX

    MIX --> FX["Tremolo · Vibrato<br/>Reverb"]
    FX --> AMP["Amplifier"]
    AMP --> LSL["Leslie · Stationary<br/>Speakers"]

    style RHY fill:#92400e,color:#fef3c7,stroke:#d97706
    style ORG fill:#92400e,color:#fef3c7,stroke:#d97706
    style ORB fill:#92400e,color:#fef3c7,stroke:#d97706
    style AMP fill:#78350f,color:#fef3c7,stroke:#d97706

The rhythm voices, gated chords, and repeat envelopes all feed the same amplifier bus as the organ and Orbit III. The rhythm has its own volume control so the player can balance percussion against organ tone.

The rhythm section presents two opportunities for the MIDI conversion project:

MIDI-In (controlling the rhythm from external sources):

  • Pattern selection via relay-driven switching of the pattern pushbuttons — documented in the Output Inventory as a binary target (confidence: Low)
  • External clock sync — if the rhythm clock accepts an external trigger, MIDI Clock messages could synchronize the Swingin’ Rhythm to a DAW or drum machine. This is an open investigation item

MIDI-Out (sending rhythm triggers externally):

  • Tapping the diode matrix outputs could provide MIDI Note On triggers synchronized to each voice — turning the analog rhythm into a MIDI drum trigger
  • The tempo clock itself could drive MIDI Clock output for synchronizing external gear

The rhythm section has not yet been tested on this particular instrument. It’s listed on the initial assessment checklist along with individual tab stops, reverb, and the cassette deck.

Given the instrument’s age and storage history, common failure modes to watch for include:

  • Dried electrolytic capacitors in the voice circuits (causes weak or missing percussion sounds)
  • Corroded pattern select contacts (causes stuck or intermittent pattern switching)
  • Clock oscillator drift (causes unsteady tempo)

The Swingin’ Rhythm circuit is entirely discrete analog — no proprietary ICs — so any failures should be repairable with standard components.