hallcurrent825a 2.0.0.0
Main Page

Hall Current 8 25A click

‍Hall Current 8 Click is a compact add-on board that contains a precise solution for AC/DC current sensing. This board features the TLI4971-A025T5, a high-precision coreless current sensor for industrial/consumer applications from Infineon Technologies. The TLI4971-A025T5 has an analog interface and two fast overcurrent detection outputs, which support the protection of the power circuitry. Galvanic isolation is also provided according to the magnetic sensing principle. Infineon's monolithic Hall technology enables accurate and highly linear measurement of currents with a full scale up to 25A. This Click boardâ„¢ is suitable for AC/DC current measurement applications: electrical drives, general-purpose inverters, chargers, current monitoring, overload, over-current detection, and many more.

click Product page


Click library

  • Author : Stefan Ilic
  • Date : Jun 2021.
  • Type : ADC type

Software Support

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

Standard key functions :

Example key functions :

  • hallcurrent825a_calibration This function sets the calibration value into the offset data from context object of the TLI4971 high precision coreless current sensor on Hall Current 8 25A Click board.
    err_t hallcurrent825a_calibration(hallcurrent825a_t *ctx)
    Hall Current 8 25A calibration function.
  • hallcurrent825a_get_voltage This function reads results of AD conversion of the AN pin and converts them to proportional voltage level.
    err_t hallcurrent825a_get_voltage ( hallcurrent825a_t *ctx, float *avr_voltage );
    err_t hallcurrent825a_get_voltage(hallcurrent825a_t *ctx, float *avr_voltage)
    Hall Current 8 25A read voltage level function.
  • hallcurrent825a_get_current This function reads results of AD conversion of the AN pin and converts them to proportional current level.
    err_t hallcurrent825a_get_current ( hallcurrent825a_t *ctx, float *current );
    err_t hallcurrent825a_get_current(hallcurrent825a_t *ctx, float *current)
    Hall Current 8 25A get current level function.

Example Description

‍This library contains API for Hall Current 8 25A Click driver. The library initializes and defines the ADC drivers. The library also includes a function for calibration, current measurement and overcurrent detection.

The demo application is composed of two sections :

Application Init

‍Initializes ADC driver, calibrate AD conversion of the AN pin and start to write log.

void application_init ( void )
{
log_cfg_t log_cfg;
hallcurrent825a_cfg_t hallcurrent825a_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
hallcurrent825a_cfg_setup( &hallcurrent825a_cfg );
HALLCURRENT825A_MAP_MIKROBUS( hallcurrent825a_cfg, MIKROBUS_1 );
if ( ADC_ERROR == hallcurrent825a_init( &hallcurrent825a, &hallcurrent825a_cfg ) )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
Delay_ms ( 1000 );
log_printf( &logger, "---------------------------\r\n" );
log_printf( &logger, " Turn OFF the power supply \r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, "---------------------------\r\n" );
log_printf( &logger, " Start Calibration \r\n" );
hallcurrent825a_calibration ( &hallcurrent825a );
Delay_ms ( 1000 );
log_printf( &logger, "---------------------------\r\n");
log_printf( &logger, " Turn ON the power supply \r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
log_printf( &logger, "---------------------------\r\n");
log_printf( &logger, " Start measurements : \r\n");
log_printf( &logger, "---------------------------\r\n");
}
#define HALLCURRENT825A_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition hallcurrent825a.h:73
void application_init(void)
Definition main.c:32

Application Task

‍This is an example that demonstrates the use of the Hall Current 8 25A click board.

In this example, we read and display current data [A], AN pin voltage level [V]. Results are being sent to the Usart Terminal where you can track their changes.

void application_task ( void )
{
float current = 0;
float avg_voltage = 0;
if ( HALLCURRENT825A_OK == hallcurrent825a_get_current ( &hallcurrent825a, &current ) )
{
log_printf( &logger, " Current : %.2f [A]\r\n", current );
}
if ( HALLCURRENT825A_OK == hallcurrent825a_get_voltage ( &hallcurrent825a, &avg_voltage ) )
{
log_printf( &logger, " AN pin voltage : %.2f [V]\r\n", avg_voltage );
}
log_printf( &logger, "---------------------------\r\n");
Delay_ms ( 1000 );
}
@ HALLCURRENT825A_OK
Definition hallcurrent825a.h:117
void application_task(void)
Definition main.c:88

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

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.