digipot8  2.0.0.0
Main Page

DIGI POT 8 click

DIGI POT 8 Click is a compact add-on board used as a digitally controlled potentiometer. This board features the AD5206, 6-channel 256-position digitally controlled variable resistor device from Analog Devices.

click Product page


Click library

  • Author : Stefan Filipovic
  • Date : Feb 2021.
  • Type : SPI type

Software Support

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

Standard key functions :

Example key functions :

Example Description

This example demonstrates the use of DIGI POT 8 Click board.

The demo application is composed of two sections :

Application Init

Initializes the driver and makes an initial log.

void application_init ( void )
{
log_cfg_t log_cfg;
digipot8_cfg_t digipot8_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
digipot8_cfg_setup( &digipot8_cfg );
DIGIPOT8_MAP_MIKROBUS( digipot8_cfg, MIKROBUS_1 );
err_t init_flag = digipot8_init( &digipot8, &digipot8_cfg );
if ( init_flag == SPI_MASTER_ERROR ) {
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}

Application Task

Iterates through the entire wiper range and sets all wipers to the iterator value each second. The current wiper position will be displayed on USB UART.

void application_task ( void )
{
for ( uint8_t cnt = DIGIPOT8_WIPER_POSITION_MIN; cnt < DIGIPOT8_WIPER_POSITION_MAX; cnt += 5 )
{
digipot8_set_wiper_1 ( &digipot8, cnt );
digipot8_set_wiper_2 ( &digipot8, cnt );
digipot8_set_wiper_3 ( &digipot8, cnt );
digipot8_set_wiper_4 ( &digipot8, cnt );
digipot8_set_wiper_5 ( &digipot8, cnt );
digipot8_set_wiper_6 ( &digipot8, cnt );
log_printf( &logger, " * All wipers position set to %d *\r\n", ( uint16_t ) cnt );
Delay_ms( 1000 );
}
}

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

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.


digipot8_set_wiper_3
err_t digipot8_set_wiper_3(digipot8_t *ctx, uint8_t data_in)
DIGI POT 8 set wiper 3 function.
DIGIPOT8_MAP_MIKROBUS
#define DIGIPOT8_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition: digipot8.h:112
digipot8_set_wiper_6
err_t digipot8_set_wiper_6(digipot8_t *ctx, uint8_t data_in)
DIGI POT 8 set wiper 6 function.
digipot8_t
DIGI POT 8 Click context object.
Definition: digipot8.h:127
digipot8_set_wiper_5
err_t digipot8_set_wiper_5(digipot8_t *ctx, uint8_t data_in)
DIGI POT 8 set wiper 5 function.
application_task
void application_task(void)
Definition: main.c:63
digipot8_set_wiper_2
err_t digipot8_set_wiper_2(digipot8_t *ctx, uint8_t data_in)
DIGI POT 8 set wiper 2 function.
digipot8_init
err_t digipot8_init(digipot8_t *ctx, digipot8_cfg_t *cfg)
DIGI POT 8 initialization function.
digipot8_cfg_t
DIGI POT 8 Click configuration object.
Definition: digipot8.h:142
digipot8_set_wiper_4
err_t digipot8_set_wiper_4(digipot8_t *ctx, uint8_t data_in)
DIGI POT 8 set wiper 4 function.
digipot8_write_data
err_t digipot8_write_data(digipot8_t *ctx, uint8_t reg, uint8_t data_in)
DIGI POT 8 write data function.
DIGIPOT8_WIPER_POSITION_MAX
#define DIGIPOT8_WIPER_POSITION_MAX
Definition: digipot8.h:94
DIGIPOT8_WIPER_POSITION_MIN
#define DIGIPOT8_WIPER_POSITION_MIN
DIGI POT 8 description setting.
Definition: digipot8.h:93
digipot8_cfg_setup
void digipot8_cfg_setup(digipot8_cfg_t *cfg)
DIGI POT 8 configuration object setup function.
application_init
void application_init(void)
Definition: main.c:29
digipot8_set_wiper_1
err_t digipot8_set_wiper_1(digipot8_t *ctx, uint8_t data_in)
DIGI POT 8 set wiper 1 function.