Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use 5 Band Parametric EQ : Examples, Pinouts, and Specs

Image of 5 Band Parametric EQ
Cirkit Designer LogoDesign with 5 Band Parametric EQ in Cirkit Designer

ReYeBu 5 Band Parametric Equalizer Documentation

Introduction

The ReYeBu 5 Band Parametric Equalizer is a versatile audio processing component designed to provide precise control over the tonal balance of audio signals. By allowing users to adjust the amplitude of audio signals across five distinct frequency bands, this equalizer is ideal for applications requiring fine-tuned sound shaping. Whether you're working on audio mixing, sound reinforcement, or custom audio projects, the ReYeBu 5 Band Parametric EQ offers a reliable and high-performance solution.

Common Applications

  • Audio Mixing Consoles: Fine-tune audio signals for live performances or studio recordings.
  • Home Audio Systems: Enhance the listening experience by adjusting tonal balance.
  • Musical Instruments: Shape the sound of electric guitars, keyboards, or other instruments.
  • DIY Audio Projects: Integrate into custom audio systems for precise sound control.
  • Broadcasting: Optimize audio signals for radio or television transmission.

Technical Specifications

The ReYeBu 5 Band Parametric Equalizer is designed for ease of integration into audio systems. Below are the key technical details and pin configurations.

Key Technical Details

Parameter Value
Operating Voltage 5V DC
Operating Current 20mA (typical)
Frequency Bands 5 (Low, Low-Mid, Mid, High-Mid, High)
Frequency Range 20 Hz to 20 kHz
Gain Adjustment Range ±12 dB per band
Input Impedance 10 kΩ
Output Impedance 1 kΩ
Signal-to-Noise Ratio >90 dB
Total Harmonic Distortion <0.01%
PCB Dimensions 50mm x 30mm x 10mm

Pin Configuration

The ReYeBu 5 Band Parametric Equalizer has a simple pinout for easy integration. Below is the pin configuration:

Pin Name Description
1 VCC Power supply input (5V DC).
2 GND Ground connection.
3 AUDIO_IN Audio signal input.
4 AUDIO_OUT Equalized audio signal output.
5 BAND1_CTRL Control pin for the first frequency band (Low frequencies).
6 BAND2_CTRL Control pin for the second frequency band (Low-Mid frequencies).
7 BAND3_CTRL Control pin for the third frequency band (Mid frequencies).
8 BAND4_CTRL Control pin for the fourth frequency band (High-Mid frequencies).
9 BAND5_CTRL Control pin for the fifth frequency band (High frequencies).

Usage Instructions

How to Use the ReYeBu 5 Band Parametric Equalizer

  1. Power the Equalizer: Connect the VCC pin to a 5V DC power source and the GND pin to ground.
  2. Input Audio Signal: Feed the audio signal into the AUDIO_IN pin. Ensure the input signal is within the acceptable voltage range.
  3. Adjust Frequency Bands:
    • Use the BANDx_CTRL pins (where x is 1 to 5) to adjust the gain for each frequency band.
    • These control pins can be connected to potentiometers, microcontrollers, or other control interfaces.
  4. Output Equalized Signal: The processed audio signal will be available at the AUDIO_OUT pin.
  5. Integration with Microcontrollers: The control pins can be interfaced with microcontrollers like Arduino for dynamic adjustments.

Important Considerations

  • Power Supply: Ensure a stable 5V DC power source to avoid noise or distortion.
  • Signal Levels: Avoid overdriving the input signal to prevent clipping or distortion.
  • Grounding: Proper grounding is essential to minimize noise and interference.
  • Control Interface: Use high-quality potentiometers or digital controllers for precise adjustments.

Example: Using the Equalizer with Arduino UNO

The ReYeBu 5 Band Parametric Equalizer can be controlled using an Arduino UNO. Below is an example of how to adjust the gain of each frequency band using PWM signals.

Circuit Diagram

  • Connect the VCC and GND pins of the equalizer to the Arduino's 5V and GND pins, respectively.
  • Connect the BANDx_CTRL pins to the Arduino's PWM-capable pins (e.g., D3, D5, D6, D9, D10).

Arduino Code Example

// ReYeBu 5 Band Parametric Equalizer Control with Arduino UNO
// This code adjusts the gain of each frequency band using PWM signals.

#define BAND1_CTRL 3  // Pin for Low frequencies
#define BAND2_CTRL 5  // Pin for Low-Mid frequencies
#define BAND3_CTRL 6  // Pin for Mid frequencies
#define BAND4_CTRL 9  // Pin for High-Mid frequencies
#define BAND5_CTRL 10 // Pin for High frequencies

void setup() {
  // Set control pins as output
  pinMode(BAND1_CTRL, OUTPUT);
  pinMode(BAND2_CTRL, OUTPUT);
  pinMode(BAND3_CTRL, OUTPUT);
  pinMode(BAND4_CTRL, OUTPUT);
  pinMode(BAND5_CTRL, OUTPUT);
}

void loop() {
  // Example: Sweep gain for each band from 0% to 100%
  for (int dutyCycle = 0; dutyCycle <= 255; dutyCycle++) {
    analogWrite(BAND1_CTRL, dutyCycle); // Adjust Low frequencies
    analogWrite(BAND2_CTRL, dutyCycle); // Adjust Low-Mid frequencies
    analogWrite(BAND3_CTRL, dutyCycle); // Adjust Mid frequencies
    analogWrite(BAND4_CTRL, dutyCycle); // Adjust High-Mid frequencies
    analogWrite(BAND5_CTRL, dutyCycle); // Adjust High frequencies
    delay(10); // Small delay for smooth transition
  }
}

Troubleshooting and FAQs

Common Issues and Solutions

Issue Possible Cause Solution
No audio output Incorrect wiring or no power supply Verify all connections and ensure a stable 5V DC power supply.
Distorted audio Input signal too high or power instability Reduce input signal amplitude and check the power source.
Noise or interference Poor grounding or noisy environment Ensure proper grounding and use shielded cables for audio connections.
Uneven frequency response Incorrect control pin adjustments Verify the control signals and adjust the gain for each band appropriately.

FAQs

  1. Can I use a 3.3V power supply?

    • No, the equalizer requires a 5V DC power supply for proper operation.
  2. What type of potentiometers should I use for manual control?

    • Use 10kΩ linear potentiometers for smooth and precise adjustments.
  3. Can I use this equalizer with a Raspberry Pi?

    • Yes, the control pins can be interfaced with the Raspberry Pi's GPIO pins using PWM.
  4. What is the maximum input signal level?

    • The maximum input signal level is 1V RMS. Exceeding this may cause distortion.

Conclusion

The ReYeBu 5 Band Parametric Equalizer is a powerful and flexible tool for audio signal processing. Its ability to adjust five distinct frequency bands makes it suitable for a wide range of applications, from professional audio mixing to DIY projects. By following the guidelines in this documentation, users can easily integrate and optimize the equalizer for their specific needs. For further assistance, refer to the troubleshooting section or contact ReYeBu support.

Explore Projects Built with 5 Band Parametric EQ

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Electric Guitar Pickup Selector with Potentiometer Control
Image of new guitar layout: A project utilizing 5 Band Parametric EQ  in a practical application
This circuit is a guitar wiring setup featuring a humbucker and two single coil pickups connected to a 5-way selector switch, allowing for different pickup combinations. The output from the selector switch is routed through three potentiometers for tone and volume control before being sent to a 6.5mm mono jack for audio output.
Cirkit Designer LogoOpen Project in Cirkit Designer
Audio Signal Conditioning Circuit with 3.5mm Jacks and Passive Components
Image of BA: A project utilizing 5 Band Parametric EQ  in a practical application
This circuit appears to be an audio signal processing or filtering circuit, utilizing multiple 3.5mm jacks for input and output connections, resistors, and capacitors to form various RC (resistor-capacitor) networks. The configuration suggests it could be used for tasks such as audio signal conditioning, noise filtering, or impedance matching.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32E-Powered Audio Recorder with SoftPot Interface and Playback
Image of Player Project: A project utilizing 5 Band Parametric EQ  in a practical application
This circuit is a multi-functional device controlled by an ESP32E microcontroller, featuring audio input via an electret microphone amplifier, audio output through a speaker driven by an amplifier, and user interaction through pushbuttons and LEDs. It also includes a SoftPot potentiometer for analog input and a Micro SD Card Module for data storage.
Cirkit Designer LogoOpen Project in Cirkit Designer
PAM8403 Amplified Piezo Speaker Array with ATTiny Control
Image of mamamo: A project utilizing 5 Band Parametric EQ  in a practical application
This circuit is an audio amplification system with multiple piezo speakers driven by a PAM8403 amplifier IC. It features an ATtiny microcontroller for potential audio control, powered by a 5V battery with capacitors for stabilization and a trimmer potentiometer for input level adjustment.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with 5 Band Parametric EQ

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of new guitar layout: A project utilizing 5 Band Parametric EQ  in a practical application
Electric Guitar Pickup Selector with Potentiometer Control
This circuit is a guitar wiring setup featuring a humbucker and two single coil pickups connected to a 5-way selector switch, allowing for different pickup combinations. The output from the selector switch is routed through three potentiometers for tone and volume control before being sent to a 6.5mm mono jack for audio output.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of BA: A project utilizing 5 Band Parametric EQ  in a practical application
Audio Signal Conditioning Circuit with 3.5mm Jacks and Passive Components
This circuit appears to be an audio signal processing or filtering circuit, utilizing multiple 3.5mm jacks for input and output connections, resistors, and capacitors to form various RC (resistor-capacitor) networks. The configuration suggests it could be used for tasks such as audio signal conditioning, noise filtering, or impedance matching.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Player Project: A project utilizing 5 Band Parametric EQ  in a practical application
ESP32E-Powered Audio Recorder with SoftPot Interface and Playback
This circuit is a multi-functional device controlled by an ESP32E microcontroller, featuring audio input via an electret microphone amplifier, audio output through a speaker driven by an amplifier, and user interaction through pushbuttons and LEDs. It also includes a SoftPot potentiometer for analog input and a Micro SD Card Module for data storage.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of mamamo: A project utilizing 5 Band Parametric EQ  in a practical application
PAM8403 Amplified Piezo Speaker Array with ATTiny Control
This circuit is an audio amplification system with multiple piezo speakers driven by a PAM8403 amplifier IC. It features an ATtiny microcontroller for potential audio control, powered by a 5V battery with capacitors for stabilization and a trimmer potentiometer for input level adjustment.
Cirkit Designer LogoOpen Project in Cirkit Designer