i2cisolator2 2.0.0.0
Main Page

I2C Isolator 2 click

‍I2C Isolator 2 click provides I2C lines and power isolation for slave devices. It carries the ADM3260 dual I2C isolator with an integrated DC-to-DC converter. I2C Isolator 2 click is designed to run on either 3.3V or 5V power supply.

click Product page


Click library

  • Author : MikroE Team
  • Date : May 2020.
  • Type : I2C type

Software Support

We provide a library for the I2CIsolator2 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 form compilers IDE(recommended way), or downloaded from our LibStock, or found on mikroE github account.

Library Description

‍This library contains API for I2CIsolator2 Click driver.

Standard key functions :

Example key functions :

Examples Description

‍This example showcases how to initialize, configure and use the I2C Isolator 2 click module. The click provides I2C lines and power isolation for slave devices. In order for this example to work, you need the EEPROM 3 click.

The demo application is composed of two sections :

Application Init

‍Initializes the driver and enables the power output.

void application_init ( void )
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
I2CISOLATOR2_MAP_MIKROBUS( cfg, MIKROBUS_1 );
i2cisolator2_init( &i2cisolator2, &cfg );
Delay_ms ( 100 );
log_info( &logger, " Application Task " );
}
#define I2CISOLATOR2_MAP_MIKROBUS(cfg, mikrobus)
Definition i2cisolator2.h:66
#define I2CISOLATOR2_POWER_ENABLE
Definition i2cisolator2.h:84
void application_init()
Definition main.c:69

Application Task

‍Writes the desired message to EEPROM 3 click board and reads it back every 2 seconds. All data is being displayed on the USB UART where you can track the program flow.

void application_task ( void )
{
uint8_t read_buf[ 100 ] = { 0 };
strlen( EEPROM3_DEMO_TEXT ) ) )
{
log_printf( &logger, " Demo text message is written to EEPROM 3 click!\r\n" );
}
Delay_ms ( 1000 );
strlen( EEPROM3_DEMO_TEXT ) ) )
{
read_buf[ strlen( EEPROM3_DEMO_TEXT ) ] = 0;
log_printf( &logger, " Read data: \"%s\"\r\n\n", read_buf );
}
Delay_ms ( 1000 );
}
#define I2CISOLATOR2_OK
Definition i2cisolator2.h:76
#define EEPROM3_MEMORY_ADDRESS
Definition main.c:33
err_t eeprom3_write_page(uint32_t address, uint8_t *data_in, uint8_t len)
Definition main.c:42
void application_task()
Definition main.c:98
#define EEPROM3_DEMO_TEXT
Definition main.c:35
err_t eeprom3_read_page(uint32_t address, uint8_t *data_out, uint8_t len)
Definition main.c:56

Note

‍Make sure to provide the VCC power supply on VCC pin and EEPROM 3 click.

The full application code, and ready to use projects can be installed directly form compilers IDE(recommneded) or found on LibStock page or mikroE GitHub accaunt.

Other mikroE Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.I2CIsolator2

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.