Skip to content

Leslie Control

The 555’s Leslie is not a Wurlitzer product. The rear-panel service labels identify it as manufactured by Electro Music, C.B.S. Musical Instruments — a division of Columbia Broadcasting Systems, Inc., Pasadena, California 91109. This is the company that made Leslie speakers (CBS acquired the Leslie Speaker brand from Electro Music in 1965).

Leslie Tremolo Unit labels and motor assembly on the 555's rear panel Leslie Tremolo Unit rear panel: service/maintenance label (top), schematic (bottom left), and motor assembly (center). Photo: Ryan Malloy.

Unit identification:

  • Part No. 660890
  • EMI No. 600900
  • 117 VAC, 60 Hz, 18 Watts
  • US Patents: 3,315,760 · 3,080,786 · 3,174,579

The console has a three-position Leslie switch: Off / Slow / Fast. The slow (chorale) and fast (tremolo) speeds produce the characteristic Leslie sound — the spin-up and spin-down transitions between speeds are where most of the musical drama lives.

The schematic label on the rear panel documents the complete motor control circuit:

Close-up of Leslie Tremolo Unit schematic and maintenance labels Leslie Tremolo Unit schematic (Part No. 660890, EMI No. 600900) and maintenance instructions. Handwritten “87625” may be a service or inventory number. Photo: Ryan Malloy.

The Leslie uses a TRIAC-based electronic speed controller with reed switch speed selection — more sophisticated than the simple relay switching assumed in the original investigation plan.

ComponentPart No.Function
Motor Control126040Main control board
TRIAC067561AC power switching element
Reed Switch023747Speed selection (magnetically actuated)
Coil Reed Switch023150Coil that actuates the reed switch
Diode04161630 PIV, 500 mW — snubber/protection
Resistor028381220 Ω, 1/2W, 10%
Cable Assembly126050Wiring harness

The schematic documents wire colors on both connectors:

Wire ColorConnection
BlackMotor control circuit
OrangeMotor control circuit
VioletMotor control circuit
WhiteMotor control circuit
GreenSpeed select
BlueSpeed select

Two connectors interface the Leslie to the organ: a plug (from the organ wiring harness) and a socket (on the Leslie unit). The socket side labels the connections as FAST and SLOW — confirming that the console switch selects between two speed states by energizing different reed switch coils, which in turn configure the TRIAC to drive the single AC motor at the appropriate speed.

The TRIAC + reed switch architecture is actually easier to interface than direct motor winding switching:

  1. The reed switch coils are low-voltage, low-current control signals — the TRIAC handles the mains-voltage motor switching
  2. The console switch energizes a coil to actuate a reed switch, which configures the TRIAC circuit for slow or fast operation
  3. The MIDI interface needs to replicate this coil drive — a small relay or optocoupler in parallel with the console switch would work, leaving the original switch functional

The schematic on the label resolves most of the unknowns from the original investigation plan. What remains:

  1. Trace the console switch to the coil — with the organ unplugged, verify which wires from the Off/Slow/Fast switch connect to the reed switch coils. The schematic documents the circuit topology; this step confirms the physical routing.

  2. Measure coil drive voltage and current — with the organ powered, measure the voltage across the reed switch coil in Slow and Fast positions. This determines the relay/optocoupler spec for the MIDI interface.

  3. Verify connector pinout — match the physical connector pins to the schematic’s numbered pin assignments and wire colors.

The service label also documents belt tension adjustment, belt replacement, and motor lubrication procedures. Key points:

  • A properly adjusted drive belt should bring the rotor to full tremolo speed in about seven to ten seconds
  • Worn or frayed belts usually cause noisy operation — replacement requires removing the tremolo unit from the organ (set it on the floor, rotor side up)
  • Motor bearings should be oiled at the oiling holes at either end of the motor shaft until bearings are saturated

Now that the Leslie’s TRIAC + reed switch control circuit has been identified, the interface design is straightforward:

Scenario A: Reed Switch Coil Drive Confirmed

The console switch energizes reed switch coils that configure the TRIAC for slow or fast motor speed. The MIDI interface replicates this coil drive in parallel with the original switch:

Interface: ESP32 GPIO → ULN2803 Darlington driver → small relay or optocoupler across reed switch coil

The ESP32 drives two channels that replicate the three-position console switch:

  • Both off = Leslie off
  • Channel 1 on = slow (chorale)
  • Channel 2 on = fast (tremolo)

MIDI mapping: CC#80 (General Purpose 5) with three zones:

CC#80 ValueLeslie StateBehavior
0–42OffMotor stops
43–95Slow (chorale)~40 RPM
96–127Fast (tremolo)~340 RPM

This mirrors the CC#80 convention used by Hammond-Suzuki and several Leslie MIDI controllers.

Regardless of motor type, the recommended MIDI mapping provides two complementary controls:

MIDI MessageFunctionUse Case
CC#80Leslie speed preset (Off/Slow/Fast)Foot switch, sequencer automation
CC#1 (Mod Wheel)Continuous speed (if Scenario B)Expressive real-time control

CC#80 is the primary control — it works with the simplest relay interface and matches existing Leslie MIDI conventions. CC#1 is reserved for continuous control if the motor type supports it.

The Leslie has been MIDI-controlled since the late 1980s. These existing solutions inform both the MIDI mapping and the electrical interface:

  • Hammond-Suzuki Leslie 2101mk2 — purpose-built MIDI Leslie with built-in MIDI input. Uses CC#80 for speed selection, exactly as proposed above. The industry standard reference.
  • Neo Instruments Ventilator — Leslie simulator pedal with MIDI input. Demonstrates the CC#80 slow/fast convention and adds CC#1 for continuous rotation speed in its “advanced” mode.
  • Voce V5+ Organ Module — MIDI-to-Leslie interface that drives real Leslie speakers from MIDI. Relay-based speed switching, confirming Scenario A is the standard approach for real motors.
  • Motion Sound Pro-3T — rotary speaker with MIDI speed control, using a DC motor and continuous speed adjustment via MIDI CC.

The consensus across these products: CC#80 for three-state switching (off/slow/fast) is the de facto standard. Our implementation follows this convention for maximum compatibility with existing MIDI controllers and DAW setups.