Hall Current 23 Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.
- Author : Stefan Filipovic
- Date : Oct 2025.
- Type : SPI type
This example demonstrates the use of Hall Current 23 Click board by reading and displaying the input current measurements.
- MikroSDK.Board
- MikroSDK.Log
- Click.HallCurrent23
hallcurrent23_cfg_setupThis function initializes Click configuration structure to initial values.
void hallcurrent23_cfg_setup ( hallcurrent23_cfg_t *cfg );hallcurrent23_initThis function initializes all necessary pins and peripherals used for this Click board.
err_t hallcurrent23_init ( hallcurrent23_t *ctx, hallcurrent23_cfg_t *cfg );hallcurrent23_calib_resolutionThis function reads the sensor voltage reference and calibrates the data resolution at a known load current.
err_t hallcurrent23_calib_resolution ( hallcurrent23_t *ctx, float calib_current );hallcurrent23_read_currentThis function reads the input current level [A].
err_t hallcurrent23_read_current ( hallcurrent23_t *ctx, float *current );Initializes the driver and calibrates the data resolution at 3A load current.
void application_init ( void )
{
log_cfg_t log_cfg; /**< Logger config object. */
hallcurrent23_cfg_t hallcurrent23_cfg; /**< Click config object. */
/**
* Logger initialization.
* Default baud rate: 115200
* Default log level: LOG_LEVEL_DEBUG
* @note If USB_UART_RX and USB_UART_TX
* are defined as HAL_PIN_NC, you will
* need to define them manually for log to work.
* See @b LOG_MAP_USB_UART macro definition for detailed explanation.
*/
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
hallcurrent23_cfg_setup( &hallcurrent23_cfg );
HALLCURRENT23_MAP_MIKROBUS( hallcurrent23_cfg, MIKROBUS_1 );
if ( SPI_MASTER_ERROR == hallcurrent23_init( &hallcurrent23, &hallcurrent23_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
log_printf( &logger, " Calibrating data resolution in 5 seconds...\r\n" );
log_printf( &logger, " Keep the load current set at %.1fA during the calibration process.\r\n",
HALLCURRENT23_CALIBRATING_CURRENT );
for ( uint8_t cnt = 5; cnt > 0; cnt-- )
{
log_printf( &logger, " %u\r\n", ( uint16_t ) cnt );
Delay_ms ( 1000 );
}
if ( HALLCURRENT23_ERROR == hallcurrent23_calib_resolution ( &hallcurrent23,
HALLCURRENT23_CALIBRATING_CURRENT ) )
{
log_error( &logger, " Calibrate resolution." );
for ( ; ; );
}
log_printf( &logger, " Data resolution calibration DONE.\r\n" );
log_info( &logger, " Application Task " );
}Reads the input current measurements and displays the results on the USB UART approximately once per second.
void application_task ( void )
{
float current = 0;
if ( HALLCURRENT23_OK == hallcurrent23_read_current ( &hallcurrent23, ¤t ) )
{
log_printf( &logger, " Current : %.1f A\r\n\n", current );
Delay_ms ( 1000 );
}
}The measurement range is approximately: +/- 50A.
This Click board can be interfaced and monitored in two ways:
- Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
- UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.
The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.