headphoneamp 2.0.0.0
Main Page

Headphone AMP click

Headphone Amp Click is a compact add-on board that contains a stereo headphone amplifier. This board features the LM4811, Boomer® audio power amplifier capable of delivering 105mW per channel with digital volume control from Texas Instruments. The Boomer® amplifiers are specifically designed to provide high-quality output power with a minimal amount of external components. Since the LM4811 does not require bootstrap capacitors or snubber networks, it is optimally suited for low-power portable systems. It features a digital volume control that sets the amplifier's gain from +12dB to −33dB in 16 discrete steps, in addition to a micro-power consumption Shutdown mode.

click Product page


Click library

  • Author : Nenad Filipovic
  • Date : Jul 2021.
  • Type : GPIO type

Software Support

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

Package can be downloaded/installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Library Description

‍This library contains API for HeadphoneAMP Click driver.

Standard key functions :

Example key functions :

Example Description

‍This library contains API for the Headphone AMP click driver. This demo application shows use of a Headphone AMP click board™.

The demo application is composed of two sections :

Application Init

‍Initialization of GPIO module and log UART. After driver initialization the app set default settings, performs power-up sequence, sets a the sound volume of -12 dB.

void application_init ( void )
{
log_cfg_t log_cfg;
headphoneamp_cfg_t headphoneamp_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
headphoneamp_cfg_setup( &headphoneamp_cfg );
HEADPHONEAMP_MAP_MIKROBUS( headphoneamp_cfg, MIKROBUS_1 );
if ( headphoneamp_init( &headphoneamp, &headphoneamp_cfg ) == DIGITAL_OUT_UNSUPPORTED_PIN )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
headphoneamp_default_cfg ( &headphoneamp );
log_info( &logger, " Application Task " );
Delay_ms ( 100 );
log_printf( &logger, "-------------------------\r\n" );
log_printf( &logger, " Performs Power-up\r\n" );
headphoneamp_power_up( &headphoneamp );
Delay_ms ( 100 );
log_printf( &logger, "-------------------------\r\n" );
log_printf( &logger, " Set volume gain -12dB\r\n", HEADPHONEAMP_SOUND_VOLUME_NEG_12_dB );
log_printf( &logger, "-------------------------\r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
#define HEADPHONEAMP_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition headphoneamp.h:102
#define HEADPHONEAMP_SOUND_VOLUME_NEG_12_dB
Definition headphoneamp.h:76
err_t headphoneamp_power_up(headphoneamp_t *ctx)
Headphone AMP power up function.
void application_init(void)
Definition main.c:33

Application Task

‍This is an example that shows the use of Headphone AMP click board™. The app performs circles the volume from -12 dB to 3 dB back and forth, increase/decrement by 3dB. Results are being sent to the Usart Terminal where you can track their changes.

void application_task ( void )
{
for ( uint8_t n_cnt = 0; n_cnt < 5; n_cnt++ ) {
log_printf( &logger, " Turning volume up\r\n" );
headphoneamp_volume_up ( &headphoneamp );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
log_printf( &logger, "-------------------------\r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
for ( uint8_t n_cnt = 0; n_cnt < 5; n_cnt++ ) {
log_printf( &logger, " Turning volume down\r\n" );
headphoneamp_volume_down ( &headphoneamp );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
log_printf( &logger, "-------------------------\r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
void application_task(void)
Definition main.c:82

The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Other Mikroe Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.HeadphoneAMP

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. UART terminal is available in all MikroElektronika compilers.