Our new website is available at new.dizzy.co.za :-).

X
+27 (0)11 022 5323 +27 (0)64 681 8495
Basket/Checkout
R
- -
MagnifierSearch:
EVC Click (Go to Parent Category)

EVC Click

EVC Click is a six-channel digital volume controller, equipped with an integrated electronic volume control circuit, which can be controlled over the I2C interface. The PT2258 IC offers six individual input channels, each with the attenuation range between 0 and -79dB, in 1dB steps. This chip requires a minimum number of external components, simplifying its implementation in a wide range of modern audio application. As an audio circuit, EVC click features very low noise and high Signal to Noise ratio (SNR) of more than 100dB. Low Total Harmonic Distortion (THD) of 0.005% ensures absolute sound clarity.

EVC click is supported by a mikroSDK compliant library, which includes functions that simplify software development. This Click board™ comes as a fully tested product, ready to be used on a system equipped with the mikroBUS™ socket.

R360  Qty:
Price ex. VAT. Weight: 25g. Stock: Lead-time applicable [i]. mikroE Icon

Equipped with six digitally controlled attenuators, featuring high channel separation, extremely low noise, great SNR ratio of more than 100dB, and low count of required external components.

How does it work?

The main component of the EVC click is the PT2258, a six-channel electronic volume controller IC, by Princeton Technology Corp. This IC contains six digitally controlled audio attenuators, which can attenuate signals between 0dB and -79dB. Each channel can be individually controlled by two-byte commands, sent over the I2C interface.

Mikroe Audio and Voice EVC Click

Although digitally controlled, sound signals within the PT2258 remain in the analog domain. The PT2258 offers a very clear and undistorted sound. The Signal to Noise Ratio (SNR) of the PT2258 is specified to be 105dB (1V RMS at any input), while the Total Harmonic Distortion (THD) is only 0.005% (200mV RMS at any input). THD gets worse as the input signal rises: 2.8V RMS results in THD of 1%. The maximum input signal should stay below 2.8V, else too much audible distortion may appear at the output.

The Click board™ is equipped with two rows of standard 2.54mm (100 mil) headers. There are six pins at each row, allowing the inputs and the outputs to be easily interfaced with the existing multichannel equipment. This Click board™ should be connected on the signal path, either in front of the amplifier itself, or in front or behind other sound processing equipment (e.g. equalizer, delay, room correction…). That way, an optimal audio signal level will be ensured for the Click board™.

Each input/output pair runs through an internal attenuator, which provides up to -79dB of attenuation, in 1dB steps. Although it seems like a very high attenuation, using it with amplifiers with high gain values may lead to still hear the sound, even after the full attenuation. Therefore, the PT2258 features a MUTE function, that completely cuts the audio output.

To set attenuation of a certain level, two bytes must be consequently sent over the I2C interface. There are both -1dB step commands and -10dB step commands for each channel. To achieve the desired attenuation at the specific channel, two commands should be sent consequently: one for -10 dB attenuation, and one for -1 dB attenuation. These commands can be sent in any order. However, sending a single command or adding a MUTE command between two attenuation commands may lead to unpredictable results. This Click board™ is supported by a mikroSDK compliant library of functions, which greatly accelerate software development, by simplifying the software development.

The I2C slave address of the Click board™ can be set using two SMD jumpers, grouped under the I2C ADD label. First SMD jumper is labeled as C1, while the second jumper is labeled as C2. These jumpers are used to configure bits CODE1 and CODE2, allowing several different I2C addresses to be selected. These jumpers can be independently moved to either position, allowing to select the desired slave address. Please refer to the PT2258 datasheet for more information about configuring the I2C slave address.

The Click board™ uses the I2C interface for the communication. It can be interfaced with both 3.3V and 5V microcontrollers (MCUs) by simply switching the SMD jumper labeled as VCC COMM to a desired position. However, thePT2258 itself still requires 5V for its operation, since it requires a power supply voltage between 5V and 9V.

Specifications

Type Audio
Applications EVC click is perfectly suited to be used for all kinds of audio processing equipment, audio distributing systems, multichannel and surround systems, car audio systems, and similar applications that require digital multichannel sound level control.
On-board modules PT2258, a six-channel electronic volume controller IC, by Princeton Technology Corp.
Key Features Six high-quality digitally controlled audio attenuators, attenuation range from 0dB to -79dB, very high Signal to Noise Ratio (SNR) of 105 dB typically, very low Total Harmonic Distortion (THD) of 0.005% for 200mV RMS, etc.
Interface I2C
Input Voltage 3.3V,5V
Click board size M (42.9 x 25.4 mm)

Pinout diagram

This table shows how the pinout on EVC Click corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).

Notes Pin Mikrobus logo.png Pin Notes
NC 1 AN PWM 16 NC
NC 2 RST INT 15 NC
NC 3 CS RX 14 NC
NC 4 SCK TX 13 NC
NC 5 MISO SCL 12 SCL I2C Clock
NC 6 MOSI SDA 11 SDA I2C Data
Power Supply 3V3 7 3.3V 5V 10 5V Power Supply
Ground GND 8 GND GND 9 GND Ground

Onboard settings and indicators

Label Name Default Description
PWR PWR - Power LED indicator
JP1 VCC COM Left Logic voltage level selection: left position 3.3V, right position 5V
JP2 I2C ADD (C1) Left I2C Slave Address Selection: left position CODE 1 bit = 1, right position CODE 1 bit = 0
JP3 I2C ADD (C2) Left I2C Slave Address Selection: left position CODE 2 bit = 1, right position CODE 2 bit = 0

Software support

We provide a library for the EVC Click on our LibStock page, as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.

Library Description

The library includes function sets the volume for the selected channel, uses two variables or one volume variable. The user has a function for mute/unmute sounds, default settings and function for clears all registers.

Key functions:

  • void equalizer_setVolumeFull(uint8_t channel, int8_t volume) - Set volume for the channel
  • void equalizer_defaultConfiguration() - Default configuration
  • void equalizer_mute(uint8_t mute) - Mute and Unmute

Examples description

The application is composed of the three sections :

  • System Initialization - Initialzes I2C module.
  • Application Initialization - Initialization driver init, default configuration and sets first volume.
  • Application Task - Waits for valid user input and executes functions based on set of valid commands.
  • Commands : '+' - volume up '-' - volume down 'x' - channel up 'z' - channel down 'm' - mute and unmute
void applicationTask()
{
    uint8_t dataReady_;
    char receivedData_;
    
    dataReady_ = UART_Rdy_Ptr( );

    if (dataReady_ != 0)
    {
        receivedData_ = UART_Rd_Ptr( );

        switch (receivedData_)
        {
            case 'z' :
            {
                /* Change channel */
                _channel --;
                if(_channel < 1)
                {
                    _channel = 1;
                }
                _playFlag = 1;
                break;
            }
            case 'x' :
            {
                /* Change channel */
                _channel ++;
                if(_channel > 6)
                {
                    _channel = 6;
                }
                _playFlag = 1;
                break;
            }
            case '+' :
            {
                /* Set volume */
                _volume++;
                if(_volume > 0)
                {
                    _volume = 0;
                }
                _playFlag = 1;
                break;
            }
            case '-' :
            {
                /* Set volume */
                _volume--;
                if(_volume < -79)
                {
                    _volume = -79;
                }
                _playFlag = 1;
                break;
            }
            case 'm' :
            {
                _mute();
                break;
            }
        }
        _play();
    }
}


Additional Functions :

  • void _getCurrentChannel( ) - Return current channel
  • void _play( ) - Start new settings of the channel
  • void _mute( ) - mute and unmute

The full application code, and ready to use projects can be found on our LibStock page.

Other mikroE Libraries used in the example:

  • I2C
  • UART
  • Conversions

Additional notes and informations

Depending on the development board you are using, you may need USB UART click, USB UART 2 click or RS232 click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.

mikroSDK

This click board is supported with mikroSDK - MikroElektronika Software Development Kit. To ensure proper operation of mikroSDK compliant click board demo applications, mikroSDK should be downloaded from the LibStock and installed for the compiler you are using.

For more information about mikroSDK, visit the official page.

Downloads