adc17 2.0.0.0
Main Page

ADC 17 click

‍ADC 17 Click is a compact add-on board that contains a high-performance data converter. This board features the MAX11645, a low-power two-channel 12-bit analog-to-digital converter from Analog Devices. The MAX11645 measures two single-ended or one differential input. The fully differential analog inputs are software configurable (I2C interface) for unipolar or bipolar, and single-ended or differential operation. The 2.048V internal reference determines its full-scale analog input range. This Click boardâ„¢ offers complete, high accuracy solutions for the most demanding applications from energy-harvesting sensors to portable consumer electronics, point-of-load monitoring (voltage, current, and temperature), and more.

click Product page


Click library

  • Author : Stefan Filipovic
  • Date : Jan 2022.
  • Type : I2C type

Software Support

We provide a library for the ADC 17 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 ADC 17 Click driver.

Standard key functions :

  • adc17_cfg_setup Config Object Initialization function.
    void adc17_cfg_setup(adc17_cfg_t *cfg)
    ADC 17 configuration object setup function.
    ADC 17 Click configuration object.
    Definition adc17.h:179
  • adc17_init Initialization function.
    err_t adc17_init ( adc17_t *ctx, adc17_cfg_t *cfg );
    err_t adc17_init(adc17_t *ctx, adc17_cfg_t *cfg)
    ADC 17 initialization function.
    ADC 17 Click context object.
    Definition adc17.h:162
  • adc17_default_cfg Click Default Configuration function.
    err_t adc17_default_cfg ( adc17_t *ctx );
    err_t adc17_default_cfg(adc17_t *ctx)
    ADC 17 default configuration function.

Example key functions :

  • adc17_set_channel This function sets the selected channel active by modifying the config byte.
    err_t adc17_set_channel ( adc17_t *ctx, uint8_t channel );
    err_t adc17_set_channel(adc17_t *ctx, uint8_t channel)
    ADC 17 set channel function.
  • adc17_get_voltage This function reads the voltage from the previously selected channel by using I2C serial interface.
    err_t adc17_get_voltage ( adc17_t *ctx, float *voltage );
    err_t adc17_get_voltage(adc17_t *ctx, float *voltage)
    ADC 17 get voltage function.
  • adc17_write_setup_byte This function writes a setup byte to the ADC chip by using I2C serial interface.
    err_t adc17_write_setup_byte ( adc17_t *ctx, uint8_t setup_byte );
    err_t adc17_write_setup_byte(adc17_t *ctx, uint8_t setup_byte)
    ADC 17 write setup byte function.

Example Description

‍This example demonstrates the use of ADC 17 click board by reading the voltage from the two analog input channels.

The demo application is composed of two sections :

Application Init

‍Initializes the driver and performs the click default configuration which sets the input channels to single-ended unipolar mode.

void application_init ( void )
{
log_cfg_t log_cfg;
adc17_cfg_t adc17_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
adc17_cfg_setup( &adc17_cfg );
ADC17_MAP_MIKROBUS( adc17_cfg, MIKROBUS_1 );
if ( I2C_MASTER_ERROR == adc17_init( &adc17, &adc17_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
if ( ADC17_ERROR == adc17_default_cfg ( &adc17 ) )
{
log_error( &logger, " Default configuration." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}
@ ADC17_ERROR
Definition adc17.h:195
#define ADC17_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition adc17.h:150
void application_init(void)
Definition main.c:30

Application Task

‍Reads and displays the voltage from the two analog input channels on the USB UART approximately every 500ms.

void application_task ( void )
{
float voltage;
{
if ( ADC17_OK == adc17_get_voltage ( &adc17, &voltage ) )
{
log_printf ( &logger, " AIN0 voltage: %.3f V \r\n\n", voltage );
}
}
{
if ( ADC17_OK == adc17_get_voltage ( &adc17, &voltage ) )
{
log_printf ( &logger, " AIN1 voltage: %.3f V \r\n\n", voltage );
}
}
Delay_ms ( 500 );
}
@ ADC17_OK
Definition adc17.h:194
#define ADC17_CHANNEL_0
ADC 17 channel selection values.
Definition adc17.h:117
#define ADC17_CHANNEL_1
Definition adc17.h:118
void application_task(void)
Definition main.c:66

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.ADC17

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.